From: Andrew Dolgov Date: Mon, 11 Aug 2008 07:32:41 +0000 (+0100) Subject: remove hack to consider apple key as prefix X-Git-Tag: 1.2.26~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=fe3320d2bdbdbbfeabab48dd6f70da3bf19b77ce;p=tt-rss.git remove hack to consider apple key as prefix --- diff --git a/tt-rss.js b/tt-rss.js index 879fff23..870c6402 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -1017,8 +1017,8 @@ function hotkey_handler(e) { if (keycode == 16) return; // ignore lone shift - if ((keycode == 70 || keycode == 67 || keycode == 71 || - keycode == 224 || keycode == 91) && !hotkey_prefix) { + if ((keycode == 70 || keycode == 67 || keycode == 71) + && !hotkey_prefix) { hotkey_prefix = keycode; debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);