Move hotkey listener from anonymous to named function.
This commit is contained in:
parent
48a63a099b
commit
90873c648b
1 changed files with 12 additions and 12 deletions
|
@ -57,9 +57,8 @@ function show_all_hotkeys()
|
|||
alert(lines);
|
||||
}
|
||||
|
||||
window.addEventListener(
|
||||
"keydown",
|
||||
function(event)
|
||||
hotkeys.hotkeys_listener =
|
||||
function hotkeys_listener(event)
|
||||
{
|
||||
if (hotkeys.should_prevent_hotkey(event)) { return; }
|
||||
identifier = hotkeys.hotkey_identifier(event.key, event.ctrlKey, event.shiftKey, event.altKey);
|
||||
|
@ -70,6 +69,7 @@ window.addEventListener(
|
|||
event.preventDefault();
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
window.addEventListener("keydown", hotkeys.hotkeys_listener);
|
||||
|
||||
hotkeys.register_hotkey("/", 0, 0, 0, hotkeys.show_all_hotkeys, "Show hotkeys.");
|
||||
|
|
Loading…
Reference in a new issue