diff options
author | Hakim El Hattab | 2013-11-21 09:22:20 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-11-21 09:22:20 -0500 |
commit | c33aa66666bb2409fb89656f6cbf719f63db840f (patch) | |
tree | 605504ebb9c92b312f2067cdf5f3986cd4d45f14 /js/reveal.js | |
parent | 2faae3d95b66acf9e722b308ec73fcc0b5ef2a57 (diff) |
respect original dom order of fragments with no explicit index
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index b5ad65f..d4c3fd0 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1045,10 +1045,20 @@ var Reveal = (function(){ var a = toArray( fragments ); + // Elements that do not have an explicit `data-fragment-index` + // are given one which matches their order in the DOM + a.forEach( function( el, idx ) { + if( !el.hasAttribute( 'data-fragment-index' ) ) { + el.setAttribute( 'data-fragment-index', idx ); + } + } ); + a.sort( function( l, r ) { return l.getAttribute( 'data-fragment-index' ) - r.getAttribute( 'data-fragment-index'); } ); + // Set the indices to match the order of the sorted fragments, + // ensures that we're 0-indexed and have no gaps a.forEach( function( el, idx ) { el.setAttribute( 'data-fragment-index', idx ); } ); |