summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-04-18 07:27:49 +0100
committerAndrew Dolgov <[email protected]>2008-04-18 07:27:49 +0100
commitf8232151a0a4bdd430e928d742686a2330e99d68 (patch)
tree256f0019972ed404d9212f1f8072f4edc77fc244 /functions.js
parent06925d9e8502e544a98b7b2dacf618be9e34f25f (diff)
add hotkey to catchup all feeds, add optional warning to catchupAllFeeds()
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 d30e6bee8..8f58f3536 100644
--- a/functions.js
+++ b/functions.js
@@ -347,6 +347,12 @@ function hotkey_handler(e) {
}
}
+ if (keycode == 81 && shift_key) { // shift + q
+ if (typeof catchupAllFeeds != 'undefined') {
+ return catchupAllFeeds();
+ }
+ }
+
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);