Firing custom event based on data-state name. This allows developers to trigger custom javascript code on a per slide basis.
This commit is contained in:
parent
831236890c
commit
2c78eea0ca
@ -501,6 +501,10 @@ var Reveal = (function(){
|
||||
// Apply the new state
|
||||
for( var i = 0, len = state.length; i < len; i++ ) {
|
||||
document.documentElement.classList.add( state[i] );
|
||||
// dispatch custom event
|
||||
var event = document.createEvent("HTMLEvents");
|
||||
event.initEvent(state[i], true, true);
|
||||
document.dispatchEvent(event);
|
||||
}
|
||||
|
||||
// Update progress if enabled
|
||||
|
Loading…
Reference in New Issue
Block a user