]> git.wh0rd.org - tt-rss.git/commitdiff
do not respond to j hotkey when shift is pressed (to prevent buffer mangling when...
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 13 Oct 2011 20:13:48 +0000 (00:13 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Thu, 13 Oct 2011 20:13:48 +0000 (00:13 +0400)
tt-rss.js

index 3e0e95919c413453fb4db532e06f7f205f163525..a7716505951b12763f2526c2120853427fe15049 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -702,7 +702,7 @@ function hotkey_handler(e) {
                                return false;
                        }
 
-                       if (keycode == 74) { // j
+                       if (keycode == 74 && !shift_key) { // j
                                var rv = dijit.byId("feedTree").getPreviousFeed(
                                                getActiveFeedId(), activeFeedIsCat());