diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-03-30 23:59:19 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-03-30 23:59:19 -0400 |
commit | 0d9a6419bb415524d36fb7870cb6949c8d35a8b7 (patch) | |
tree | 9a8c741a459479d7cc0c487288e72e6e71274f93 /index.html | |
parent | 8dc7ae85a1794f35d56caa943e1e384a45c478dd (diff) | |
download | fosdem-2018-presentation-0d9a6419bb415524d36fb7870cb6949c8d35a8b7.tar fosdem-2018-presentation-0d9a6419bb415524d36fb7870cb6949c8d35a8b7.tar.gz |
change back state event scope, document level makes more sense as that's where the state class is applied
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,7 +255,7 @@ // Example of binding an event to a state. This listener will trigger // when the slide with 'data-state="blurred"' is opened. - document.querySelector( '#reveal' ).addEventListener( 'blurred', function() { + document.addEventListener( 'blurred', function() { }, false ); |