simplify how data-autoslide is picked up from fragments #766

This commit is contained in:
Hakim El Hattab
2013-12-21 17:54:21 +01:00
parent ed4cdaf9e7
commit a97d73167d
3 changed files with 9 additions and 9 deletions

View File

@ -1456,6 +1456,7 @@ var Reveal = (function(){
*/
function toggleAutoSlide( override ) {
if( typeof override === 'boolean' ) {
override ? resumeAutoSlide() : pauseAutoSlide();
}
@ -2500,14 +2501,9 @@ var Reveal = (function(){
if( currentSlide ) {
var fragmentAutoSlide = null;
// it is assumed that any given data-autoslide value (for each of the current fragments) can be chosen
toArray( Reveal.getCurrentSlide().querySelectorAll( '.current-fragment' ) ).forEach( function( el ) {
if( el.hasAttribute( 'data-autoslide' ) ) {
fragmentAutoSlide = el.getAttribute( 'data-autoslide' );
}
} );
var currentFragment = currentSlide.querySelector( '.current-fragment' );
var fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;
var parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;
var slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );

4
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long