diff options
author | Rick Lupton | 2013-06-14 15:03:54 +0100 |
---|---|---|
committer | Rick Lupton | 2013-06-14 15:12:56 +0100 |
commit | 510839ab04a46005319480d99c1e676d6881e213 (patch) | |
tree | a710c49de59253affd370b0f22ff30fc0f8ab42b /js | |
parent | a9dce74e24d0cc3e5af69f5a0ff5ce4c90b1dcb6 (diff) |
Fix navigatePrev() past beginning of stack: fixes issue #463.#463.#463.
Previously navigatePrev() was changing indexh and indexv; instead should
call slide(h, v) and let it change indexh and indexv.
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index a4a71db..51b84ea 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1758,9 +1758,9 @@ var Reveal = (function(){ var previousSlide = document.querySelector( HORIZONTAL_SLIDES_SELECTOR + '.past:nth-child(' + indexh + ')' ); if( previousSlide ) { - indexv = ( previousSlide.querySelectorAll( 'section' ).length + 1 ) || undefined; - indexh --; - slide( indexh, indexv ); + var v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined, + h = indexh - 1; + slide( h, v ); } } } |