Only call embedded content bits if the slide actually changed.

master
Chris Lawrence 2013-06-08 05:45:48 -04:00
parent 396d531770
commit d3ebbf1be7
1 changed files with 6 additions and 3 deletions

View File

@ -1128,7 +1128,8 @@ var Reveal = (function(){
}
// Dispatch an event if the slide changed
if( indexh !== indexhBefore || indexv !== indexvBefore ) {
var slideChanged = (indexh !== indexhBefore || indexv !== indexvBefore);
if( slideChanged ) {
dispatchEvent( 'slidechanged', {
'indexh': indexh,
'indexv': indexv,
@ -1165,8 +1166,10 @@ var Reveal = (function(){
}
// Handle embedded content
stopEmbeddedContent( previousSlide );
startEmbeddedContent( currentSlide );
if (slideChanged) {
stopEmbeddedContent( previousSlide );
startEmbeddedContent( currentSlide );
}
updateControls();
updateProgress();