From 48812ad2e0c9ed8b057bdab640691fb2e4406c59 Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 22 Feb 2017 17:10:58 +0900 Subject: [PATCH] [Client] Fix bug --- src/web/app/desktop/tags/ui.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/app/desktop/tags/ui.tag b/src/web/app/desktop/tags/ui.tag index 0669d252a..9792839ba 100644 --- a/src/web/app/desktop/tags/ui.tag +++ b/src/web/app/desktop/tags/ui.tag @@ -26,7 +26,7 @@ }); this.onkeydown = e => { - if (e.target.tagName == 'input' || e.target.tagName == 'textarea') return; + if (e.target.tagName == 'INPUT' || e.target.tagName == 'TEXTAREA') return; if (e.which == 80 || e.which == 78) { // p or n e.preventDefault();