diff --git a/js/reveal.js b/js/reveal.js index 0a1e70f..913aa28 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2619,7 +2619,7 @@ // Start video playback var currentVideo = currentBackground.querySelector( 'video' ); if( currentVideo ) { - currentVideo.currentTime = 0; + if(currentVideo.currentTime > 0) currentVideo.currentTime = 0; currentVideo.play(); }