Merge branch 'dev' of github.com:hakimel/reveal.js into dev
This commit is contained in:
commit
0cd4e2c84f
2 changed files with 9 additions and 5 deletions
|
@ -3688,7 +3688,10 @@
|
|||
// - The overview isn't active
|
||||
// - The presentation isn't over
|
||||
if( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {
|
||||
autoSlideTimeout = setTimeout( navigateNext, autoSlide );
|
||||
autoSlideTimeout = setTimeout( function() {
|
||||
typeof config.autoSlideMethod === 'function' ? config.autoSlideMethod() : navigateNext();
|
||||
cueAutoSlide();
|
||||
}, autoSlide );
|
||||
autoSlideStartTime = Date.now();
|
||||
}
|
||||
|
||||
|
@ -3834,10 +3837,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
// If auto-sliding is enabled we need to cue up
|
||||
// another timeout
|
||||
cueAutoSlide();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue