diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-04-16 02:22:56 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-04-16 02:22:56 +1000 |
| commit | ba86ba12732b3290eaa74936950a370966b41ac5 (patch) | |
| tree | fcb1fb3df3a0edc1d0a27a5336c8cadaef593507 /wwwroot/js | |
| parent | d59e751c5b7c23f0dce2a146b6b8ced80231a0cb (diff) | |
v0.10av0.10a
Diffstat (limited to 'wwwroot/js')
| -rw-r--r-- | wwwroot/js/keyboard.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wwwroot/js/keyboard.js b/wwwroot/js/keyboard.js index 59eec4c..8b46639 100644 --- a/wwwroot/js/keyboard.js +++ b/wwwroot/js/keyboard.js @@ -49,6 +49,9 @@ async function keyDownHandler(e) { e.preventDefault(); return; } + + if(typeof pageKeyDownHandler == 'function') + pageKeyDownHandler(e); } window.onload = () => document.onkeydown = keyDownHandler;
\ No newline at end of file |
