summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-10-14 00:13:48 +0400
committerAndrew Dolgov <[email protected]>2011-10-14 00:13:48 +0400
commit4c58e285554587f698f2efcf76c960b111224604 (patch)
treea3087180254f1a134b6dbb65d8fb9c2f0beb9d7b /tt-rss.js
parent67ae092f04bf9b4abbed90ddc520bafff949174a (diff)
do not respond to j hotkey when shift is pressed (to prevent buffer mangling when opening dev console)
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 1 insertions, 1 deletions
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());