summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerek Schrock <[email protected]>2013-09-20 00:04:33 -0400
committerDerek Schrock <[email protected]>2013-09-20 00:04:33 -0400
commitd7e4897b8ee6506ececf0a3bd4aa7c44c4dc4c6a (patch)
tree8bb70ab3336742125a60878ecd2945d25f0f4034
parent9a6c4b70333e4e151c5671de6fb23e03789c137a (diff)
Firefox accessibility.typeaheadfind is triggered for multikey shortcuts.
For multikey shortcuts Firefox accessibility.typeaheadfind is triggered. Returning false will cause the default event from occuring and prevent the event from bubbling up.
-rw-r--r--js/tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 04aec0cca..b5bbd9f57 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -892,7 +892,7 @@ function hotkey_handler(e) {
cmdline.innerHTML = keychar;
Element.show(cmdline);
- return true;
+ return false;
}
Element.hide(cmdline);