Skip to content
This repository was archived by the owner on Mar 20, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/common/preboot.interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
// This is used to identify which events to listen for and what we do with them
export interface EventSelector {
selector: string; // same as jQuery; selector for nodes
events: [string]; // array of event names to listen for
keyCodes?: [number]; // key codes to watch out for
events: string[]; // array of event names to listen for
keyCodes?: number[]; // key codes to watch out for
preventDefault?: boolean; // will prevent default handlers if true
freeze?: boolean; // if true, the UI will freeze when this event occurs
action?: Function; // custom action to take with this event
Expand Down