Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions build/hotkeys.js
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,11 @@
}
}

// Helper function to expose helpVisible for the public API
function helpVisible() {
return scope.helpVisible;
}

/**
* Creates a new Hotkey and creates the Mousetrap binding
*
Expand Down Expand Up @@ -584,6 +589,7 @@
bindTo : bindTo,
template : this.template,
toggleCheatSheet : toggleCheatSheet,
helpVisible : helpVisible,
includeCheatSheet : this.includeCheatSheet,
cheatSheetHotkey : this.cheatSheetHotkey,
cheatSheetDescription : this.cheatSheetDescription,
Expand Down
6 changes: 6 additions & 0 deletions src/hotkeys.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,11 @@
}
}

// Helper function to expose helpVisible for the public API
function helpVisible() {
return scope.helpVisible;
}

/**
* Creates a new Hotkey and creates the Mousetrap binding
*
Expand Down Expand Up @@ -578,6 +583,7 @@
bindTo : bindTo,
template : this.template,
toggleCheatSheet : toggleCheatSheet,
helpVisible : helpVisible,
includeCheatSheet : this.includeCheatSheet,
cheatSheetHotkey : this.cheatSheetHotkey,
cheatSheetDescription : this.cheatSheetDescription,
Expand Down