diff options
author | Hakim El Hattab | 2013-06-09 17:15:40 +0200 |
---|---|---|
committer | Hakim El Hattab | 2013-06-09 17:15:40 +0200 |
commit | 1c16148c09e96742bd4cb728589654ed43103867 (patch) | |
tree | cbb34dcbc140a91235cfae98f3532bbc6954f9c8 /js/reveal.js | |
parent | 8393efe8e908dcf2fbcfc8217f54f6639e157dd5 (diff) |
set 'hidden' attribute on all slides except the present (#457)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index f1ede50..7f0223f 100644 --- a/js/reveal.js +++ b/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 |