diff options
author | Hakim El Hattab | 2013-11-21 09:01:18 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-11-21 09:01:18 -0500 |
commit | 60a74ebfa3d699fa475b39b9f94e14e68e6dbc52 (patch) | |
tree | e951c099a1c47109488da1cefbda3ec4a58f7181 /js/reveal.js | |
parent | 9d0ac527802370597a5f1ab1b3f0dd5b039d33b8 (diff) |
fragments are now zero-indexed
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/js/reveal.js b/js/reveal.js index c25daa9..294a648 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1047,7 +1047,7 @@ var Reveal = (function(){ a.forEach( function( el, idx ) { if( !el.hasAttribute( 'data-fragment-index' ) ) { - el.setAttribute( 'data-fragment-index', idx + 1 ); + el.setAttribute( 'data-fragment-index', idx ); } } ); @@ -2261,7 +2261,7 @@ var Reveal = (function(){ var hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0; if( hasFragments ) { var visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' ); - f = visibleFragments.length; + f = visibleFragments.length - 1; } } @@ -2273,7 +2273,7 @@ var Reveal = (function(){ * Navigate to the specified slide fragment. * * @param {Number} index The index of the fragment that - * should be shown, 1-based, 0 means all are invisible + * should be shown, -1 means all are invisible * @param {Number} offset Integer offset to apply to the * fragment index * @@ -2292,10 +2292,10 @@ var Reveal = (function(){ var lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop(); if( lastVisibleFragment ) { - index = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 1, 10 ); + index = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 ); } else { - index = 0; + index = -1; } } @@ -2309,8 +2309,14 @@ var Reveal = (function(){ toArray( fragments ).forEach( function( element, i ) { + // Hidden fragments + if( i > index ) { + if( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element ); + element.classList.remove( 'visible' ); + element.classList.remove( 'current-fragment' ); + } // Visible fragments - if( i < index ) { + else { if( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element ); element.classList.add( 'visible' ); element.classList.remove( 'current-fragment' ); @@ -2319,12 +2325,6 @@ var Reveal = (function(){ element.classList.add( 'current-fragment' ); } } - // Hidden fragments - else { - if( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element ); - element.classList.remove( 'visible' ); - element.classList.remove( 'current-fragment' ); - } } ); |