- Update sourcces

This commit is contained in:
ParticleG
2024-10-31 00:51:48 +08:00
parent 6eba788236
commit 421e74e357
4 changed files with 3 additions and 3 deletions

View File

@@ -55,7 +55,7 @@
window.addEventListener("keydown", function(e) {
// space and arrow keys
if([32, 37, 38, 39, 40].indexOf(e.keyCode) > -1) {
if([37, 38, 39, 40].indexOf(e.keyCode) > -1) {
e.preventDefault();
}
}, false);