diff options
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3d9bcf7..777f4ab 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -581,9 +581,7 @@ var Reveal = (function(){ return Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 ); } ); - autoSlidePlayer.on( 'click', function() { - autoSlidePaused ? resumeAutoSlide() : pauseAutoSlide(); - } ); + autoSlidePlayer.on( 'click', onAutoSlidePlayerClick ); } else if( autoSlidePlayer ) { autoSlidePlayer.destroy(); @@ -2817,6 +2815,27 @@ var Reveal = (function(){ } + /** + * Handles click on the auto-sliding controls element. + */ + function onAutoSlidePlayerClick( event ) { + + // Replay + if( Reveal.isLastSlide() && config.loop === false ) { + slide( 0, 0 ); + resumeAutoSlide(); + } + // Resume + else if( autoSlidePaused ) { + resumeAutoSlide(); + } + // Pause + else { + pauseAutoSlide(); + } + + } + // --------------------------------------------------------------------// // ------------------------ PLAYBACK COMPONENT ------------------------// |