From 4c58e285554587f698f2efcf76c960b111224604 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 14 Oct 2011 00:13:48 +0400 Subject: do not respond to j hotkey when shift is pressed (to prevent buffer mangling when opening dev console) --- tt-rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tt-rss.js b/tt-rss.js index 3e0e95919..a77165059 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()); -- cgit v1.2.3