diff options
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(); } |