Merge pull request #1851 from astone123/master

Fix data-background-video autoplay on iOS Safari
This commit is contained in:
Hakim El Hattab 2017-04-07 10:02:58 +02:00 committed by GitHub
commit 2289b92961
1 changed files with 3 additions and 1 deletions

View File

@ -1462,7 +1462,7 @@
* target element.
*
* remaining height = [ configured parent height ] - [ current parent height ]
*
*
* @param {HTMLElement} element
* @param {number} [height]
*/
@ -3113,6 +3113,8 @@
// Videos
else if ( backgroundVideo && !isSpeakerNotes() ) {
var video = document.createElement( 'video' );
video.setAttribute( 'autoplay', '' );
video.setAttribute( 'playsinline', '' );
if( backgroundVideoLoop ) {
video.setAttribute( 'loop', '' );