1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 22:35:55 +00:00

do not respond to j hotkey when shift is pressed (to prevent buffer mangling when opening dev console)

This commit is contained in:
Andrew Dolgov
2011-10-14 00:13:48 +04:00
parent 67ae092f04
commit 4c58e28555

View File

@@ -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());