forked from FoundKeyGang/FoundKey
[Client] Fix bug
This commit is contained in:
parent
4a44cfa472
commit
48812ad2e0
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue