Browse Source

make it possible to disable hash change listener with respondToHashChanges: false

Hakim El Hattab 5 years ago
parent
commit
772fa0308d
4 changed files with 4 additions and 1 deletions
  1. 0 0
      dist/reveal.esm.js
  2. 0 0
      dist/reveal.js
  3. 3 0
      js/config.js
  4. 1 1
      js/reveal.js

File diff suppressed because it is too large
+ 0 - 0
dist/reveal.esm.js


File diff suppressed because it is too large
+ 0 - 0
dist/reveal.js


+ 3 - 0
js/config.js

@@ -62,6 +62,9 @@ export default {
 	// page/copying the URL will return you to the same slide
 	hash: false,
 
+	// Flags if we should monitor the hash and change slides accordingly
+	respondToHashChanges: true,
+
 	// Push each slide change to the browser history.  Implies `hash: true`
 	history: false,
 

+ 1 - 1
js/reveal.js

@@ -487,8 +487,8 @@ export default function( revealElement, options ) {
 		if( config.touch ) touch.bind();
 		if( config.keyboard ) keyboard.bind();
 		if( config.progress ) progress.bind();
+		if( config.respondToHashChanges ) location.bind();
 		controls.bind();
-		location.bind();
 
 		dom.slides.addEventListener( 'transitionend', onTransitionEnd, false );
 		dom.pauseOverlay.addEventListener( 'click', resume, false );

Some files were not shown because too many files changed in this diff