-
-
Save jblossomweb/cb49778916700e982c92 to your computer and use it in GitHub Desktop.
This file contains 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
function hideAddressBar() | |
{ | |
if(!window.location.hash) | |
{ | |
if(document.height < window.outerHeight) | |
{ | |
document.body.style.height = (window.outerHeight + 50) + 'px'; | |
} | |
setTimeout( function(){ window.scrollTo(0, 1); }, 50 ); | |
} | |
} | |
window.addEventListener("load", function(){ if(!window.pageYOffset){ hideAddressBar(); } } ); | |
window.addEventListener("orientationchange", hideAddressBar ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment