diff options
author | Hakim El Hattab | 2013-02-03 11:28:01 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-02-03 11:28:01 -0500 |
commit | c21e6bbfedd62128ea1c023498317894c6f9a01d (patch) | |
tree | 9f3c32e87b02bfd9e8b7bad011fe573092bc55f7 /js/reveal.js | |
parent | 2629be651a616010460ac011f32189d8fd7a906f (diff) |
fix vertical centering of slide in ios chrome (closes #289)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 6553c8a..a9890ca 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -234,7 +234,7 @@ var Reveal = (function(){ */ function hideAddressBar() { - if( navigator.userAgent.match( /(iphone|ipod)/i ) ) { + if( /iphone|ipod|android/gi.test( navigator.userAgent ) && !/crios/gi.test( navigator.userAgent ) ) { // Events that should trigger the address bar to hide window.addEventListener( 'load', removeAddressBar, false ); window.addEventListener( 'orientationchange', removeAddressBar, false ); @@ -1729,7 +1729,7 @@ var Reveal = (function(){ } /** - * Event handles for navigation control buttons. + * Event handler for navigation control buttons. */ function onNavigateLeftClicked( event ) { event.preventDefault(); navigateLeft(); } function onNavigateRightClicked( event ) { event.preventDefault(); navigateRight(); } |