summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/tt-rss.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index c3a5a5fd4..c51e25db5 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -860,8 +860,6 @@ function hotkey_handler(e) {
keycode = e.which;
}
- var keychar = String.fromCharCode(keycode).toLowerCase();
-
if (keycode == 27) { // escape
hotkey_prefix = false;
}
@@ -870,6 +868,7 @@ function hotkey_handler(e) {
if (keycode == 17) return; // ignore lone ctrl
var hotkeys = getInitParam("hotkeys");
+ var keychar = String.fromCharCode(keycode).toLowerCase();
if (!hotkey_prefix && hotkeys[0].indexOf(keychar) != -1) {