minor refactoring of overview code

This commit is contained in:
Hakim El Hattab 2013-08-26 09:20:12 -04:00
parent cf8b004052
commit e9b0f5b481
4 changed files with 14 additions and 20 deletions

View File

@ -1050,8 +1050,8 @@ body {
.reveal.fade.overview .slides section, .reveal.fade.overview .slides section,
.reveal.fade.overview .slides>section>section, .reveal.fade.overview .slides>section>section,
.reveal.fade.exit-overview .slides section, .reveal.fade.overview-deactivating .slides section,
.reveal.fade.exit-overview .slides>section>section { .reveal.fade.overview-deactivating .slides>section>section {
-webkit-transition: none; -webkit-transition: none;
-moz-transition: none; -moz-transition: none;
-ms-transition: none; -ms-transition: none;

2
css/reveal.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -1156,7 +1156,7 @@ var Reveal = (function(){
var depth = window.innerWidth < 400 ? 1000 : 2500; var depth = window.innerWidth < 400 ? 1000 : 2500;
dom.wrapper.classList.add( 'overview' ); dom.wrapper.classList.add( 'overview' );
dom.wrapper.classList.remove( 'exit-overview' ); dom.wrapper.classList.remove( 'overview-deactivating' );
clearTimeout( activateOverviewTimeout ); clearTimeout( activateOverviewTimeout );
clearTimeout( deactivateOverviewTimeout ); clearTimeout( deactivateOverviewTimeout );
@ -1164,7 +1164,7 @@ var Reveal = (function(){
// Not the pretties solution, but need to let the overview // Not the pretties solution, but need to let the overview
// class apply first so that slides are measured accurately // class apply first so that slides are measured accurately
// before we can position them // before we can position them
activateOverviewTimeout = setTimeout( function(){ activateOverviewTimeout = setTimeout( function() {
var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ); var horizontalSlides = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );
@ -1241,25 +1241,19 @@ var Reveal = (function(){
// Temporarily add a class so that transitions can do different things // Temporarily add a class so that transitions can do different things
// depending on whether they are exiting/entering overview, or just // depending on whether they are exiting/entering overview, or just
// moving from slide to slide // moving from slide to slide
dom.wrapper.classList.add( 'exit-overview' ); dom.wrapper.classList.add( 'overview-deactivating' );
deactivateOverviewTimeout = setTimeout( function () { deactivateOverviewTimeout = setTimeout( function () {
dom.wrapper.classList.remove( 'exit-overview' ); dom.wrapper.classList.remove( 'overview-deactivating' );
}, 10); }, 1 );
// Select all slides // Select all slides
var slides = toArray( document.querySelectorAll( SLIDES_SELECTOR ) ); toArray( document.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {
for( var i = 0, len = slides.length; i < len; i++ ) {
var element = slides[i];
element.style.display = '';
// Resets all transforms to use the external styles // Resets all transforms to use the external styles
transformElement( element, '' ); transformElement( slide, '' );
element.removeEventListener( 'click', onOverviewSlideClicked, true ); slide.removeEventListener( 'click', onOverviewSlideClicked, true );
} } );
slide( indexh, indexv ); slide( indexh, indexv );

4
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long