diff options
author | hakimel | 2012-05-03 12:42:53 -0400 |
---|---|---|
committer | hakimel | 2012-05-03 12:42:53 -0400 |
commit | ebb834f4b0b42363e3a59836fc1f2aa15a691c77 (patch) | |
tree | a6b3434280ff1fcc1538e035bc78f1c93ffe8805 /js/reveal.js | |
parent | 5a6837358bd91896114359b598a42b7172af1ec8 (diff) |
ie9 fixes, including new classList polyfill
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 3360255..4761595 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -461,7 +461,7 @@ var Reveal = (function(){ // If this slide has a state associated with it, add it // onto the current state of the deck - var slideState = slides[index].dataset.state; + var slideState = slides[index].getAttribute( 'data-state' ); if( slideState ) { state = state.concat( slideState.split( ' ' ) ); } |