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.
This commit is contained in:
Derek Schrock 2013-09-20 00:04:33 -04:00
parent 9a6c4b7033
commit d7e4897b8e

View file

@ -892,7 +892,7 @@ function hotkey_handler(e) {
cmdline.innerHTML = keychar;
Element.show(cmdline);
return true;
return false;
}
Element.hide(cmdline);