]> git.wh0rd.org Git - tt-rss.git/commitdiff
don't block processing of keys q and Q
authorAndrew Dolgov <fox@madoka.spb.ru>
Mon, 19 May 2008 06:47:53 +0000 (07:47 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Mon, 19 May 2008 06:47:53 +0000 (07:47 +0100)
tt-rss.js

index 247dca2a260f30cb0fbb1475e35d6b28e3a26272..57315b4e58cc42884b88e80a8bfe5ecca887f054 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -1095,14 +1095,14 @@ function hotkey_handler(e) {
                        if (keycode == 81 && shift_key) { // Q
                                if (typeof catchupAllFeeds != 'undefined') {
                                        catchupAllFeeds();
-                                       return false;
+                                       return;
                                }
                        }
 
                        if (keycode == 81) { // q
                                if (getActiveFeedId()) {
                                        catchupCurrentFeed();
-                                       return false;
+                                       return;
                                }
                        }