From f8232151a0a4bdd430e928d742686a2330e99d68 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 18 Apr 2008 07:27:49 +0100 Subject: add hotkey to catchup all feeds, add optional warning to catchupAllFeeds() --- functions.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'functions.js') 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); -- cgit v1.2.3