Yassine Doghri 94cea0ce91 feat: set min PHP version to 8.4
update CI4 to 4.6.0 + use codeigniter-vite and vite-plugin-codeigniter to load assets
2025-03-14 12:54:51 +00:00

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;