diff options
author | Hakim El Hattab | 2015-01-06 12:49:52 +0100 |
---|---|---|
committer | Hakim El Hattab | 2015-01-06 12:49:52 +0100 |
commit | 40f12acf2dc2996ab8db81f474e8903364e94d87 (patch) | |
tree | b35d70f1e0c112c6850e3d4c1879711443e2c3a3 /js | |
parent | 4cee280e36294efce8e35fc2198847397190c0ac (diff) |
always play background video from the start #1049
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3c2b1c8..e5576ed 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -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. |