Merge pull request #3078 from vanch3d/video
Fixing background video not playing on certain small factor devices (android)edit
commit
bded1f5d39
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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 {
|
|||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue