1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:25:56 +00:00

new hotkey: shift-C, toggle collapse feedlist

This commit is contained in:
Andrew Dolgov
2008-02-20 13:33:33 +01:00
parent 2f3d91c570
commit 08f3bb157a

View File

@@ -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);