Retrospring/app/javascript/retrospring/initializers/hotkey.ts

8 lines
225 B
TypeScript

import { install } from '@github/hotkey'
export default function (): void {
document.addEventListener('turbo:load', () => {
document.querySelectorAll('[data-hotkey]').forEach(el => install(el as HTMLElement));
});
}