mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 18:15:56 +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:
@@ -702,7 +702,7 @@ function hotkey_handler(e) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (keycode == 74) { // j
|
if (keycode == 74 && !shift_key) { // j
|
||||||
var rv = dijit.byId("feedTree").getPreviousFeed(
|
var rv = dijit.byId("feedTree").getPreviousFeed(
|
||||||
getActiveFeedId(), activeFeedIsCat());
|
getActiveFeedId(), activeFeedIsCat());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user