mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
15 lines
335 B
TypeScript
15 lines
335 B
TypeScript
import { install } from "@github/hotkey";
|
|
|
|
const HotKeys = (): void => {
|
|
const hotkeys: NodeListOf<HTMLElement> =
|
|
document.querySelectorAll("[data-hotkey]");
|
|
|
|
// Install all the hotkeys on the page
|
|
for (let i = 0; i < hotkeys.length; i++) {
|
|
const hotkey = hotkeys[i];
|
|
install(hotkey);
|
|
}
|
|
};
|
|
|
|
export default HotKeys;
|