From: Andrew Dolgov Date: Wed, 20 Feb 2008 12:33:33 +0000 (+0100) Subject: new hotkey: shift-C, toggle collapse feedlist X-Git-Tag: 1.2.20~8 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=08f3bb157aeed85589add19351d3bc758184f768;p=tt-rss.git new hotkey: shift-C, toggle collapse feedlist --- diff --git a/functions.js b/functions.js index ddfce247..3d3b34b3 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);