do not respond to j hotkey when shift is pressed (to prevent buffer mangling when opening dev console)
This commit is contained in:
parent
67ae092f04
commit
4c58e28555
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
||||
|
|
Loading…
Reference in a new issue