ie9 fixes, including new classList polyfill

This commit is contained in:
hakimel
2012-05-03 12:42:53 -04:00
parent 5a6837358b
commit ebb834f4b0
5 changed files with 13 additions and 13 deletions

View File

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