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

initial for JS strict mode

This commit is contained in:
Andrew Dolgov
2018-03-08 18:33:42 +03:00
parent c9a5e5aa28
commit 3009ecc44f
7 changed files with 11 additions and 10 deletions

View File

@@ -939,7 +939,7 @@ function pref_hotkey_handler(e) {
var hotkey_action = false;
var hotkeys = getInitParam("hotkeys");
for (sequence in hotkeys[1]) {
for (var sequence in hotkeys[1]) {
if (sequence == hotkey) {
hotkey_action = hotkeys[1][sequence];
break;