diff options
author | Hakim El Hattab | 2013-09-11 21:55:49 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-09-11 21:55:49 -0400 |
commit | 041a525a3cc4f3ddf291b7f0b0e72eb57b6b65f2 (patch) | |
tree | b30053913c8b74c8c1b94b6778c800c31b27eed2 /js/reveal.js | |
parent | 79340908f451ea77b364b1955928664defbd3bf6 (diff) |
make hiding of address bar configurable
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index e1cd623..794911c 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -74,6 +74,9 @@ var Reveal = (function(){ // Apply a 3D roll to links on hover rollingLinks: false, + // Hides the address bar on mobile devices + hideAddressBar: true, + // Opens links in an iframe preview overlay previewLinks: false, @@ -767,7 +770,7 @@ var Reveal = (function(){ */ function hideAddressBar() { - if( isMobileDevice ) { + if( config.hideAddressBar && isMobileDevice ) { // Events that should trigger the address bar to hide window.addEventListener( 'load', removeAddressBar, false ); window.addEventListener( 'orientationchange', removeAddressBar, false ); |