From: Andrew Dolgov Date: Thu, 13 Oct 2011 20:13:48 +0000 (+0400) Subject: do not respond to j hotkey when shift is pressed (to prevent buffer mangling when... X-Git-Tag: 1.5.6~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4c58e285554587f698f2efcf76c960b111224604;p=tt-rss.git do not respond to j hotkey when shift is pressed (to prevent buffer mangling when opening dev console) --- diff --git a/tt-rss.js b/tt-rss.js index 3e0e9591..a7716505 100644 --- 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());