diff options
author | Hakim El Hattab | 2013-10-18 09:15:22 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-10-18 09:15:22 -0400 |
commit | 27369453855f6944189f66971164295da0818c12 (patch) | |
tree | 5f2e05eb6dacaef54703ce524fb352d6d70a0306 /js/reveal.js | |
parent | dd08b86a0fbc330ba7c8631bc630bda3f7d9982b (diff) |
don't increase body height to try and hide address bar, caused issues in ios 7 safari
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/js/reveal.js b/js/reveal.js index de254d4..d2667fd 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -858,16 +858,6 @@ var Reveal = (function(){ */ function removeAddressBar() { - // Portrait and not Chrome for iOS - if( window.orientation === 0 && !/crios/gi.test( navigator.userAgent ) ) { - document.documentElement.style.overflow = 'scroll'; - document.body.style.height = '120%'; - } - else { - document.documentElement.style.overflow = ''; - document.body.style.height = '100%'; - } - setTimeout( function() { window.scrollTo( 0, 1 ); }, 10 ); |