This commit is contained in:
Timothy J. Baek 2024-05-23 12:56:27 -07:00
parent b1c2547f17
commit d3d780463f
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -210,7 +210,7 @@
}
};
document.addEventListener("keydown", down);
document.addEventListener("keydown", down, { capture: true });
return () => document.removeEventListener("keydown", down);
});
</script>