From 832eccb9fb67d8b3c222c868abe0999a3af7e65e Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 16 Jul 2021 09:10:50 -0700 Subject: [PATCH] Note-taking area --- static/devel.html | 2 +- static/index.html | 9 +++++++++ static/inputs.mjs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/static/devel.html b/static/devel.html index 34b8339..b7a2cb5 100644 --- a/static/devel.html +++ b/static/devel.html @@ -207,7 +207,7 @@

Notes

- +
diff --git a/static/index.html b/static/index.html index bd202c1..b7a2cb5 100644 --- a/static/index.html +++ b/static/index.html @@ -202,6 +202,15 @@ +
+
+

Notes

+
+
+ +
+
+

Alphabet

diff --git a/static/inputs.mjs b/static/inputs.mjs index ab2e729..00d1750 100644 --- a/static/inputs.mjs +++ b/static/inputs.mjs @@ -40,7 +40,7 @@ export class Keyboard { } keyboard(event) { - if (["INPUT"].includes(document.activeElement.tagName)) { + if (["INPUT", "TEXTAREA"].includes(document.activeElement.tagName)) { // Ignore everything if the user is entering text somewhere return }