Merge pull request #1310 from teawithfruit/patch-1
solves early access error with video element
This commit is contained in:
commit
75d38379b7
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue