summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-18 04:54:49 +0100
committerAndrew Dolgov <[email protected]>2008-05-18 04:54:49 +0100
commitc17802891e0fcbc3d3edb1b3b0530f8056d61de9 (patch)
tree2522ffabdef826429fdb03aa3809deb53296ac6a /tt-rss.js
parenteec498c3d5ce6b13560502e09195de93f1879b45 (diff)
hotkeys: change f c and f C to q and Q
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 3b16e13f8..587ea198e 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1092,6 +1092,20 @@ function hotkey_handler(e) {
}
}
+ if (keycode == 81 && shift_key) { // Q
+ if (typeof catchupAllFeeds != 'undefined') {
+ catchupAllFeeds();
+ return false;
+ }
+ }
+
+ if (keycode == 81) { // q
+ if (getActiveFeedId()) {
+ catchupCurrentFeed();
+ return false;
+ }
+ }
+
}
/* Prefix f */