diff options
author | Hakim El Hattab | 2012-06-06 22:22:13 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-06-06 22:22:13 -0400 |
commit | 2b6c61060b209d7eb58eb0a2fa111caef746f59e (patch) | |
tree | 5a496f7789352566a44b3effbcce6bd984d922c0 /js/reveal.js | |
parent | 5a782e54f84d21b21776e43c67a14d1dc35fe628 (diff) |
prevent duplicate slidechange from firing after hash change (closes #54)
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/js/reveal.js b/js/reveal.js index c1f50b8..dbe11f5 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -610,16 +610,19 @@ var Reveal = (function(){ * Updates the visual slides to represent the currently * set indices. */ - function slide() { + function slide( h, v ) { // Remember the state before this slide var stateBefore = state.concat(); // Reset the state array state.length = 0; + var indexhBefore = indexh, + indexvBefore = indexv; + // Activate and transition to the new slide - indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, indexh ); - indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, indexv ); + indexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h ); + indexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v ); // Apply the new state stateLoop: for( var i = 0, len = state.length; i < len; i++ ) { @@ -658,11 +661,13 @@ var Reveal = (function(){ clearTimeout( writeURLTimeout ); writeURLTimeout = setTimeout( writeURL, 1500 ); - // Dispatch an event notifying observers of the change in slide - dispatchEvent( 'slidechanged', { - 'indexh': indexh, - 'indexv': indexv - } ); + if( indexh !== indexhBefore || indexv !== indexvBefore ) { + // Dispatch an event notifying observers of the change in slide + dispatchEvent( 'slidechanged', { + 'indexh': indexh, + 'indexv': indexv + } ); + } } /** @@ -814,40 +819,31 @@ var Reveal = (function(){ * @param {Number} v The vertical index of the slide to show */ function navigateTo( h, v ) { - indexh = h === undefined ? indexh : h; - indexv = v === undefined ? indexv : v; - - slide(); + slide( h, v ); } function navigateLeft() { // Prioritize hiding fragments if( overviewIsActive() || previousFragment() === false ) { - indexh --; - indexv = 0; - slide(); + slide( indexh - 1, 0 ); } } function navigateRight() { // Prioritize revealing fragments if( overviewIsActive() || nextFragment() === false ) { - indexh ++; - indexv = 0; - slide(); + slide( indexh + 1, 0 ); } } function navigateUp() { // Prioritize hiding fragments if( overviewIsActive() || previousFragment() === false ) { - indexv --; - slide(); + slide( indexh, indexv - 1 ); } } function navigateDown() { // Prioritize revealing fragments if( overviewIsActive() || nextFragment() === false ) { - indexv ++; - slide(); + slide( indexh, indexv + 1 ); } } |