diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2008-05-19 07:47:53 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2008-05-19 07:47:53 +0100 |
| commit | 36cebe0f8da738414e0256f433e9422f25b79605 (patch) | |
| tree | f606f47cff9ee1fc9d7496802e0ab8dd97dfc7a0 /tt-rss.js | |
| parent | abe6d9346ea8a9cbbed7d11ec6f7a28183df04e9 (diff) | |
don't block processing of keys q and Q
Diffstat (limited to 'tt-rss.js')
| -rw-r--r-- | tt-rss.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } } |