From e30a61d4a809d818432d6b19981fad4be39e5b65 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 21 Feb 2007 14:10:00 +0100 Subject: add new shortcuts to catchup page (z) and feed (c) --- functions.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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); -- cgit v1.2.3