aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-10-17 22:27:31 -0400
committerHakim El Hattab2013-10-17 22:27:31 -0400
commitdd08b86a0fbc330ba7c8631bc630bda3f7d9982b (patch)
tree298628466402f814079550ebe0f1a4deda4e1f06 /js/reveal.js
parent68318407a8585d16e1e5f10668eceadaee50b27d (diff)
don't show auto slide controls if there's only one slide
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 9ac7a45..de254d4 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -518,6 +518,8 @@ var Reveal = (function(){
*/
function configure( options ) {
+ var numberOfSlides = document.querySelectorAll( SLIDES_SELECTOR ).length;
+
dom.wrapper.classList.remove( config.transition );
// New config options may be passed when this method
@@ -576,7 +578,7 @@ var Reveal = (function(){
}
// Auto-slide playback controls
- if( config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {
+ if( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {
autoSlidePlayer = new Playback( dom.wrapper, function() {
return Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );
} );