forked from olcxjas-softworks/LarpixClient
Forgot to fix keyboard
This commit is contained in:
parent
005d2e2820
commit
2e2c080df4
2 changed files with 2 additions and 2 deletions
|
|
@ -1729,7 +1729,7 @@ document.addEventListener('touchend', e => {
|
|||
|
||||
if (!touchMoved) {
|
||||
if (activeTouchButton.tagName !== 'INPUT' && activeTouchButton.tagName !== 'TEXTAREA') {
|
||||
if (document.activeElement && document.activeElement.tagName === 'INPUT' && document.activeElement.tagName === 'TEXTAREA') {
|
||||
if (document.activeElement && (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA')) {
|
||||
document.activeElement.blur();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1729,7 +1729,7 @@ document.addEventListener('touchend', e => {
|
|||
|
||||
if (!touchMoved) {
|
||||
if (activeTouchButton.tagName !== 'INPUT' && activeTouchButton.tagName !== 'TEXTAREA') {
|
||||
if (document.activeElement && document.activeElement.tagName === 'INPUT' && document.activeElement.tagName === 'TEXTAREA') {
|
||||
if (document.activeElement && (document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA')) {
|
||||
document.activeElement.blur();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue