diff options
author | Hakim El Hattab | 2012-03-28 01:16:16 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-03-28 01:16:16 -0400 |
commit | 0cd3b8d4309b20c189cc4c7c8a5e56d7e47d594b (patch) | |
tree | ed5226d26ad481e80cb6074bc2d71ef07e0aca22 /js | |
parent | 732ed921ebc693d29988c73ba1f28a986dd8f143 (diff) |
merge prev/next navigation pull request with modifications
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 51 |
1 files changed, 35 insertions, 16 deletions
diff --git a/js/reveal.js b/js/reveal.js index adc5278..885884f 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -659,22 +659,41 @@ var Reveal = (function(){ slide(); } } - function navigatePrev() { - if( availableRoutes().up ) navigateUp(); - else { - // Go to last slide in previous vertical stack - var pastSlides = document.querySelectorAll('#reveal .slides>section.past'); - if( pastSlides.length > 0 ) { - var prevVerticalSlides = pastSlides[pastSlides.length - 1].querySelectorAll('section'); - indexv = prevVerticalSlides.length > 0 ? prevVerticalSlides.length - 1 : 0; - indexh --; - slide(); - } - } - } - function navigateNext() { - availableRoutes().down ? navigateDown() : navigateRight(); - } + + /** + * Navigates backwards, prioritized in the following order: + * 1) Previous fragment + * 2) Previous vertical slide + * 3) Previous horizontal slide + */ + function navigatePrev() { + // Prioritize revealing fragments + if( previousFragment() === false ) { + if( availableRoutes().up ) { + navigateUp(); + } + else { + // Fetch the previous horizontal slide, if there is one + var previousSlide = document.querySelector( '#reveal .slides>section.past:nth-child(' + indexh + ')' ); + + if( previousSlide ) { + indexv = ( previousSlide.querySelectorAll('section').length + 1 ) || 0; + indexh --; + slide(); + } + } + } + } + + /** + * Same as #navigatePrev() but navigates forwards. + */ + function navigateNext() { + // Prioritize revealing fragments + if( nextFragment() === false ) { + availableRoutes().down ? navigateDown() : navigateRight(); + } + } // Expose some methods publicly return { |