diff options
author | hakimel | 2013-01-21 12:29:44 -0500 |
---|---|---|
committer | hakimel | 2013-01-21 12:29:44 -0500 |
commit | e62b0f8795408e042a86f654ea4636ab95894476 (patch) | |
tree | 0e4e3f1159c8b69f438341f311b6c3e4ae65283f /js/reveal.js | |
parent | 09bf962d32dc9907aac0073fceb9b6887f629a97 (diff) |
config option for disabling touch navigation (closes #299)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/js/reveal.js b/js/reveal.js index affa4dc..93b14f7 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -34,6 +34,9 @@ var Reveal = (function(){ // Vertical centering of slides center: true, + // Enables touch navigation on devices with touch input + touch: true, + // Loop the presentation loop: false, @@ -375,12 +378,15 @@ var Reveal = (function(){ */ function addEventListeners() { - document.addEventListener( 'touchstart', onDocumentTouchStart, false ); - document.addEventListener( 'touchmove', onDocumentTouchMove, false ); - document.addEventListener( 'touchend', onDocumentTouchEnd, false ); window.addEventListener( 'hashchange', onWindowHashChange, false ); window.addEventListener( 'resize', onWindowResize, false ); + if( config.touch ) { + document.addEventListener( 'touchstart', onDocumentTouchStart, false ); + document.addEventListener( 'touchmove', onDocumentTouchMove, false ); + document.addEventListener( 'touchend', onDocumentTouchEnd, false ); + } + if( config.keyboard ) { document.addEventListener( 'keydown', onDocumentKeyDown, false ); } @@ -407,12 +413,15 @@ var Reveal = (function(){ function removeEventListeners() { document.removeEventListener( 'keydown', onDocumentKeyDown, false ); - document.removeEventListener( 'touchstart', onDocumentTouchStart, false ); - document.removeEventListener( 'touchmove', onDocumentTouchMove, false ); - document.removeEventListener( 'touchend', onDocumentTouchEnd, false ); window.removeEventListener( 'hashchange', onWindowHashChange, false ); window.removeEventListener( 'resize', onWindowResize, false ); + if( config.touch ) { + document.removeEventListener( 'touchstart', onDocumentTouchStart, false ); + document.removeEventListener( 'touchmove', onDocumentTouchMove, false ); + document.removeEventListener( 'touchend', onDocumentTouchEnd, false ); + } + if ( config.progress && dom.progress ) { dom.progress.removeEventListener( 'click', preventAndForward( onProgressClick ), false ); } |