@@ -2471,7 +2471,10 @@
// Start video playback
var currentVideo = currentBackground.querySelector( 'video' );
- if( currentVideo ) currentVideo.play();
+ if( currentVideo ) {
+ currentVideo.currentTime = 0;
+ currentVideo.play();
+ }
// Don't transition between identical backgrounds. This
// prevents unwanted flicker.