From 066f03c1004a1182338538e8f59d7fb39f208f0a Mon Sep 17 00:00:00 2001 From: Jacob Casper Date: Mon, 7 Feb 2022 15:32:59 -0600 Subject: [PATCH] Fix comment composition Don't allow controlling, re-directing window, etc. while attempting to compose a comment. --- hnim.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hnim.js b/hnim.js index ab854f8..3910014 100644 --- a/hnim.js +++ b/hnim.js @@ -51,7 +51,7 @@ change(e.target.closest("tr.athing")); }) document.addEventListener("keydown", (e) => { - if (e.isComposing) { + if (e.target.type === 'textarea' || e.isComposing) { return; } switch (e.key) { -- 2.20.1