summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-02-21 14:10:00 +0100
committerAndrew Dolgov <[email protected]>2007-02-21 14:10:00 +0100
commite30a61d4a809d818432d6b19981fad4be39e5b65 (patch)
tree652be278b531326bea471196a686694efb67906e
parent6f9cb1b50ed8c42462f992aa3cf803eeab32094d (diff)
add new shortcuts to catchup page (z) and feed (c)
-rw-r--r--functions.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 95dceb054..194d83157 100644
--- a/functions.js
+++ b/functions.js
@@ -261,6 +261,18 @@ function hotkey_handler(e) {
return editFeedDlg(getActiveFeedId());
}
+ if (keycode == 67) { // c
+ if (getActiveFeedId()) {
+ return catchupCurrentFeed();
+ }
+ }
+
+ if (keycode == 90) { // z
+ if (getActiveFeedId()) {
+ return catchupPage();
+ }
+ }
+
if (typeof localHotkeyHandler != 'undefined') {
try {
return localHotkeyHandler(e);