diff options
author | danielmitd | 2012-06-10 11:51:11 +0200 |
---|---|---|
committer | danielmitd | 2012-06-10 11:51:11 +0200 |
commit | 60d70f483c833c3611dc6e8daa96466a3bd16373 (patch) | |
tree | 11c1c77e1a65f989fb3a3b9c4b46371972e4eb18 /js | |
parent | 5fba8078435fc307aad53965022676344234e538 (diff) |
use config
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index cb4e3f9..50b8640 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -160,7 +160,7 @@ var Reveal = (function(){ document.addEventListener( 'touchend', onDocumentTouchEnd, false ); window.addEventListener( 'hashchange', onWindowHashChange, false ); - if (dom.controls) { + if (config.controls && dom.controls) { dom.controlsLeft.addEventListener( 'click', preventAndForward( navigateLeft ), false ); dom.controlsRight.addEventListener( 'click', preventAndForward( navigateRight ), false ); dom.controlsUp.addEventListener( 'click', preventAndForward( navigateUp ), false ); @@ -175,7 +175,7 @@ var Reveal = (function(){ document.removeEventListener( 'touchend', onDocumentTouchEnd, false ); window.removeEventListener( 'hashchange', onWindowHashChange, false ); - if (dom.controls) { + if (config.controls && dom.controls) { dom.controlsLeft.removeEventListener( 'click', preventAndForward( navigateLeft ), false ); dom.controlsRight.removeEventListener( 'click', preventAndForward( navigateRight ), false ); dom.controlsUp.removeEventListener( 'click', preventAndForward( navigateUp ), false ); @@ -699,7 +699,7 @@ var Reveal = (function(){ * Updates the state and link pointers of the controls. */ function updateControls() { - if (!dom.controls) return; + if (!config.controls || !dom.controls) return; var routes = availableRoutes(); |