summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-08-11 08:32:41 +0100
committerAndrew Dolgov <[email protected]>2008-08-11 08:32:41 +0100
commitfe3320d2bdbdbbfeabab48dd6f70da3bf19b77ce (patch)
treee41d6320e04a292262acbccd7925dfff32a8611e /tt-rss.js
parent1cce3aca13c360fdec6832ac5df30f9472a54360 (diff)
remove hack to consider apple key as prefix
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 879fff23c..870c64028 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);