Преглед на файлове

set 'hidden' attribute on all slides except the present (#457)

Hakim El Hattab преди 11 години
родител
ревизия
1c16148c09
променени са 2 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 4 0
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 4 - 0
js/reveal.js

@@ -1362,6 +1362,9 @@ var Reveal = (function(){
 				element.classList.remove( 'present' );
 				element.classList.remove( 'future' );
 
+				// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute
+				element.setAttribute( 'hidden', '' );
+
 				if( i < index ) {
 					// Any element previous to index is given the 'past' class
 					element.classList.add( reverse ? 'future' : 'past' );
@@ -1379,6 +1382,7 @@ var Reveal = (function(){
 
 			// Mark the current slide as present
 			slides[index].classList.add( 'present' );
+			slides[index].removeAttribute( 'hidden' );
 
 			// If this slide has a state associated with it, add it
 			// onto the current state of the deck

Файловите разлики са ограничени, защото са твърде много
+ 1 - 1
js/reveal.min.js


Някои файлове не бяха показани, защото твърде много файлове са промени