adding type to the video source tag

This commit is contained in:
vanch3d 2021-11-23 09:42:22 +00:00
parent c79f4b5a4f
commit bcf83153d7

View File

@ -137,7 +137,7 @@ export default class SlideContent {
// Support comma separated lists of video sources
backgroundVideo.split( ',' ).forEach( source => {
video.innerHTML += '<source src="'+ source +'">';
video.innerHTML += '<source src="'+ source +'" type="video/' + source.split(".").pop() + '">';
} );
backgroundContent.appendChild( video );
@ -471,4 +471,4 @@ export default class SlideContent {
}
}
}