Merge pull request #1138 from denehyg/background-video-loop
background video loop
This commit is contained in:
@ -2756,6 +2756,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
|
||||
@ -2765,6 +2766,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 ) {
|
||||
|
Reference in New Issue
Block a user