aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-04-27 18:36:29 -0400
committerHakim El Hattab2013-04-27 18:36:29 -0400
commit06d0579610b6e041f68842ece1c481476df52f6d (patch)
tree41dd2f0cef307393bb7f02602f083b5a8bad8332 /js/reveal.js
parented4a8b51c594fbbad0759b21677484911f077d51 (diff)
only auto-play media when data-autoplay is set (#388)
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js4
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":""}', '*');
}
});