From 08f3bb157aeed85589add19351d3bc758184f768 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 20 Feb 2008 13:33:33 +0100 Subject: [PATCH] new hotkey: shift-C, toggle collapse feedlist --- functions.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/functions.js b/functions.js index ddfce2477..3d3b34b38 100644 --- a/functions.js +++ b/functions.js @@ -329,6 +329,12 @@ function hotkey_handler(e) { } } + if (keycode == 67 && shift_key) { // c + if (typeof collapse_feedlist != 'undefined') { + return collapse_feedlist(); + } + } + if (typeof localHotkeyHandler != 'undefined') { try { return localHotkeyHandler(e);