Merge pull request #1310 from teawithfruit/patch-1
solves early access error with video element
This commit is contained in:
commit
75d38379b7
@ -2619,7 +2619,7 @@
|
|||||||
// Start video playback
|
// Start video playback
|
||||||
var currentVideo = currentBackground.querySelector( 'video' );
|
var currentVideo = currentBackground.querySelector( 'video' );
|
||||||
if( currentVideo ) {
|
if( currentVideo ) {
|
||||||
currentVideo.currentTime = 0;
|
if(currentVideo.currentTime > 0) currentVideo.currentTime = 0;
|
||||||
currentVideo.play();
|
currentVideo.play();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user