diff options
author | Hakim El Hattab | 2013-08-22 19:35:21 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-22 19:35:28 -0400 |
commit | f61ee9a693dc6fc167c65665a3e17de9566ffe9b (patch) | |
tree | 658084ab873d3f320f4598e087059291b451606e /js/reveal.js | |
parent | a7b348e83b62fdfdf2a5d14ae98d84d46130dc04 (diff) |
fix bug where isLastSlide sometimes incorrectly returned false
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/js/reveal.js b/js/reveal.js index e7860ff..fabcded 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2759,12 +2759,17 @@ var Reveal = (function(){ // Returns true if we're currently on the last slide isLastSlide: function() { - if( currentSlide && currentSlide.classList.contains( '.stack' ) ) { - return currentSlide.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false; - } - else { - return document.querySelector( SLIDES_SELECTOR + '.future' ) == null ? true : false; + if( currentSlide ) { + // Does this slide has next a sibling? + if( currentSlide.nextElementSibling ) return false; + + // If it's vertical, does its parent have a next sibling? + if( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false; + + return true; } + + return false; }, // Checks if reveal.js has been loaded and is ready for use |