소스 검색

#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();
 				}