diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-09-15 10:31:20 +1000 |
|---|---|---|
| committer | Jake Mannens <jakem_5@hotmail.com> | 2026-01-14 20:28:34 +1100 |
| commit | 5565be07f8d8d473759315fd99747c64e2ce3450 (patch) | |
| tree | fe0323eebd9981d1f2bad219bff5ac9cd4b674aa /wwwroot/js/keyboard.js | |
| parent | 6255f7c74687934e6701ddd98f5e3a84de78c451 (diff) | |
Completed initial login functionality
Diffstat (limited to 'wwwroot/js/keyboard.js')
| -rw-r--r-- | wwwroot/js/keyboard.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wwwroot/js/keyboard.js b/wwwroot/js/keyboard.js index e3854f9..392a7d1 100644 --- a/wwwroot/js/keyboard.js +++ b/wwwroot/js/keyboard.js @@ -1,7 +1,7 @@ async function keyDownHandler(e) { function isDialogChild(e) { - while (e = e.parentElement) - if (e.tagName == 'DIV' && e.classList.contains('dialog')) + while(e = e.parentElement) + if(e.tagName == 'DIV' && e.classList.contains('dialog')) return true; return false; } |
