Explorar el Código

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

Hakim El Hattab hace 5 años
padre
commit
772fa0308d
Se han modificado 4 ficheros con 4 adiciones y 1 borrados
  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

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/reveal.esm.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 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 );

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio