Skip to content

Instantly share code, notes, and snippets.

@chuanxd
Created July 24, 2017 04:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuanxd/b499f0e2523604e570a5fd8830a9a0a0 to your computer and use it in GitHub Desktop.
Save chuanxd/b499f0e2523604e570a5fd8830a9a0a0 to your computer and use it in GitHub Desktop.
if (/Android */.test(navigator.appVersion)) {
window.addEventListener('resize', () => {
if (document.activeElement.tagName === 'INPUT') {
window.setTimeout(() => {
document.activeElement.scrollIntoViewIfNeeded()
}, 0)
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment