diff options
author | Greg Denehy | 2015-02-19 17:04:41 +1030 |
---|---|---|
committer | Greg Denehy | 2015-02-19 17:04:41 +1030 |
commit | 00fa1c818dc5806297c3ab3ec68abc13911774d1 (patch) | |
tree | 35fce0d17053d54477bd8e59af30042a2180ab89 /js | |
parent | ce8ea8439305913a9be6322fcd445814c521e724 (diff) |
Added option to loop background videos
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index 65ac29f..5a3f1af 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2590,6 +2590,7 @@ var backgroundImage = slide.getAttribute( 'data-background-image' ), backgroundVideo = slide.getAttribute( 'data-background-video' ), + backgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ), backgroundIframe = slide.getAttribute( 'data-background-iframe' ); // Images @@ -2599,6 +2600,9 @@ // Videos else if ( backgroundVideo && !isSpeakerNotes() ) { var video = document.createElement( 'video' ); + if ( backgroundVideoLoop ) { + video.setAttribute( 'loop', '' ); + } // Support comma separated lists of video sources backgroundVideo.split( ',' ).forEach( function( source ) { |