فهرست منبع

#1770, set 'data-paused-by-reveal' attribute only for the media elements, which are not already in paused state.

Markku Roponen 8 سال پیش
والد
کامیت
962c6c133b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -3071,7 +3071,7 @@
 		if( slide && slide.parentNode ) {
 			// HTML5 media elements
 			toArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {
-				if( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {
+				if( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' && el.paused === false ) {
 					el.setAttribute('data-paused-by-reveal', '');
 					el.pause();
 				}