diff options
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index 82a0741..4f4373d 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1432,14 +1432,14 @@ var Reveal = (function(){ if( slide ) { // HTML5 media elements toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) { - if( !el.hasAttribute( 'data-ignore' ) ) { + if( el.hasAttribute( 'data-autoplay' ) ) { el.play(); } } ); // YouTube embeds toArray( slide.querySelectorAll( 'iframe[src*="youtube.com/embed/"]' ) ).forEach( function( el ) { - if( !el.hasAttribute( 'data-ignore' ) ) { + if( el.hasAttribute( 'data-autoplay' ) ) { el.contentWindow.postMessage('{"event":"command","func":"playVideo","args":""}', '*'); } }); |