summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-03-08 18:33:42 +0300
committerAndrew Dolgov <[email protected]>2018-03-08 18:33:42 +0300
commit3009ecc44f4a2cebe0d918f6a993ce0cab0fbe81 (patch)
tree1ba72d41dfb8870a7635629790813e349151d800 /js/prefs.js
parentc9a5e5aa2875008931f4f75ba7d01fd5439cd0ea (diff)
initial for JS strict mode
Diffstat (limited to 'js/prefs.js')
-rwxr-xr-xjs/prefs.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/prefs.js b/js/prefs.js
index a3f32dcbc..aa06674df 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -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;