From d7e4897b8ee6506ececf0a3bd4aa7c44c4dc4c6a Mon Sep 17 00:00:00 2001 From: Derek Schrock Date: Fri, 20 Sep 2013 00:04:33 -0400 Subject: [PATCH] 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. --- js/tt-rss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tt-rss.js b/js/tt-rss.js index 04aec0cc..b5bbd9f5 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); -- 2.39.2