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

This commit is contained in:
Hakim El Hattab
2020-05-08 20:49:06 +02:00
parent 3a032a836a
commit 772fa0308d
4 changed files with 6 additions and 3 deletions

View File

@@ -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 );