From: Andrew Dolgov Date: Fri, 5 May 2017 08:46:16 +0000 (+0300) Subject: hotkey_handler: one more tiny tweak X-Git-Tag: 17.12~192 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=46b433933e2a8c59810c964b0a889d337758b7a2 hotkey_handler: one more tiny tweak --- diff --git a/js/tt-rss.js b/js/tt-rss.js index c3a5a5fd..c51e25db 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) {