formatting

This commit is contained in:
Hakim El Hattab 2015-09-02 12:58:08 +02:00
parent 75d38379b7
commit 5e3bbdeecf
1 changed files with 1 additions and 1 deletions

View File

@ -2619,7 +2619,7 @@
// Start video playback
var currentVideo = currentBackground.querySelector( 'video' );
if( currentVideo ) {
if(currentVideo.currentTime > 0) currentVideo.currentTime = 0;
if( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;
currentVideo.play();
}