Skip to content

Commit

Permalink
Attach onX handlers to root so they don't interact with modals
Browse files Browse the repository at this point in the history
  • Loading branch information
lewish committed Feb 24, 2024
1 parent cf791de commit fa1806f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ async function render() {
// tslint:disable-next-line: no-console
render().catch((e) => console.log(e));

window.addEventListener("keypress", (e) => controller.handleKeyPress(e));
window.addEventListener("keydown", (e) => controller.handleKeyDown(e));
window.addEventListener("keyup", (e) => controller.handleKeyUp(e));
document.getElementById("root").addEventListener("keypress", (e) => controller.handleKeyPress(e));
document.getElementById("root").addEventListener("keydown", (e) => controller.handleKeyDown(e));
document.getElementById("root").addEventListener("keyup", (e) => controller.handleKeyUp(e));

window.document.addEventListener("paste", (e) => {
document.addEventListener("paste", (e) => {
e.preventDefault();
// Text tool manages pasting it's own way.
const clipboardText = e.clipboardData.getData("text");
Expand Down
1 change: 1 addition & 0 deletions client/view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export const View = ({ ...rest }: React.HTMLAttributes<HTMLCanvasElement>) =>
<canvas
width={document.documentElement.clientWidth}
height={document.documentElement.clientHeight}
tabIndex={0}
style={{
backgroundColor: colors.background,
cursor: store.computedCurrentCursor,
Expand Down

0 comments on commit fa1806f

Please sign in to comment.