From: Derek Schrock Date: Fri, 20 Sep 2013 04:04:33 +0000 (-0400) Subject: Firefox accessibility.typeaheadfind is triggered for multikey shortcuts. X-Git-Tag: 1.11~56^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=d7e4897b8ee6506ececf0a3bd4aa7c44c4dc4c6a;p=tt-rss.git 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. --- 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);