Created
September 17, 2012 07:13
-
-
Save herschel666/3735996 to your computer and use it in GitHub Desktop.
How to annoy Mobile-Device-Users
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
/* | |
* Hiding the address bar after scrolling to the top. | |
* For the troll in you. | |
**/ | |
!'ontouchstart' in document.documentElement || window.addEventListener('scroll', function () { | |
if ( window.scrollY ) return; | |
window.scrollTo(0, 1); | |
}, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment