mirror of
https://github.com/hakimel/reveal.js.git
synced 2025-08-05 06:07:37 +02:00
always play background video from the start #1049
This commit is contained in:
@@ -2471,7 +2471,10 @@
|
|||||||
|
|
||||||
// Start video playback
|
// Start video playback
|
||||||
var currentVideo = currentBackground.querySelector( 'video' );
|
var currentVideo = currentBackground.querySelector( 'video' );
|
||||||
if( currentVideo ) currentVideo.play();
|
if( currentVideo ) {
|
||||||
|
currentVideo.currentTime = 0;
|
||||||
|
currentVideo.play();
|
||||||
|
}
|
||||||
|
|
||||||
// Don't transition between identical backgrounds. This
|
// Don't transition between identical backgrounds. This
|
||||||
// prevents unwanted flicker.
|
// prevents unwanted flicker.
|
||||||
|
Reference in New Issue
Block a user