keybind(HTMLElement, {binds: string | string[], on_bind: (event: IKeybindEvent) => void}): IKeybindAction — Used to bind multiple key combinations to activate a keybind callback.
keybind(HTMLElement, {repeat?: boolean, repeat_throttle?: number}) — Used to control if the on_bind callback is repeated for held down active keybinds, and how long between each repeat call.
CHANGELOG
Added the following Actions / Action Features
keybind(HTMLElement, {binds: string | string[], on_bind: (event: IKeybindEvent) => void}): IKeybindAction
— Used to bind multiple key combinations to activate a keybind callback.keybind(HTMLElement, {repeat?: boolean, repeat_throttle?: number})
— Used to control if theon_bind
callback is repeated for held down active keybinds, and how long between each repeat call.