]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
add hotkey to catchup all feeds, add optional warning to catchupAllFeeds()
[tt-rss.git] / functions.js
index d30e6bee8ba4f50ad8992c337853d6c5e8c226bd..8f58f35368104dc647152111bbe996b60bc51442 100644 (file)
@@ -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);