|
@@ -103,10 +103,10 @@ var Reveal = (function(){
|
|
|
|
|
|
writeURLTimeout = 0,
|
|
|
|
|
|
-
|
|
|
+
|
|
|
activateOverviewTimeout = 0,
|
|
|
|
|
|
-
|
|
|
+
|
|
|
deactivateOverviewTimeout = 0,
|
|
|
|
|
|
|
|
@@ -587,6 +587,7 @@ var Reveal = (function(){
|
|
|
|
|
|
dom.wrapper.classList.add( 'overview' );
|
|
|
dom.wrapper.classList.remove( 'exit-overview' );
|
|
|
+
|
|
|
clearTimeout( activateOverviewTimeout );
|
|
|
clearTimeout( deactivateOverviewTimeout );
|
|
|
|
|
@@ -662,10 +663,12 @@ var Reveal = (function(){
|
|
|
clearTimeout( deactivateOverviewTimeout );
|
|
|
|
|
|
dom.wrapper.classList.remove( 'overview' );
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
dom.wrapper.classList.add( 'exit-overview' );
|
|
|
+
|
|
|
deactivateOverviewTimeout = setTimeout( function () {
|
|
|
dom.wrapper.classList.remove( 'exit-overview' );
|
|
|
}, 10);
|