summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-02-20 13:33:33 +0100
committerAndrew Dolgov <[email protected]>2008-02-20 13:33:33 +0100
commit08f3bb157aeed85589add19351d3bc758184f768 (patch)
tree0ac1824f3d0b2231ad858cbf2080ec9fad3af003 /functions.js
parent2f3d91c570bafbf79467e9a5dcb9c0f1adc8dea8 (diff)
new hotkey: shift-C, toggle collapse feedlist
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js6
1 files changed, 6 insertions, 0 deletions
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);