Created
August 3, 2020 04:17
-
-
Save rachmadideni/7beea3107358f36803f190f3472d2473 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(/Android [4-6]/.test(window.navigator.appVersion)) { | |
window.addEventListener("resize", function() { | |
console.log('eventListener Added'); | |
console.log(document.activeElement.tagName); | |
if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") { | |
window.setTimeout(function() { | |
document.activeElement.scrollIntoViewIfNeeded(); | |
},0); | |
} | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment