diff options
author | Hakim El Hattab | 2012-11-10 15:28:34 -0500 |
---|---|---|
committer | Hakim El Hattab | 2012-11-10 15:28:34 -0500 |
commit | 891a66b5c41c564e6fd0c180274c1ea9a24774e9 (patch) | |
tree | 44ffed8aeefa3d65b65dc7d17508780d5cd893f7 /js/reveal.js | |
parent | b4815a3a831cab4775b18b9e78711d25a7531f51 (diff) |
correction to vertical centering and overview mode, clean up of vertical slide storage
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 88 |
1 files changed, 61 insertions, 27 deletions
diff --git a/js/reveal.js b/js/reveal.js index 6f9388d..2f81235 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1,5 +1,5 @@ /*! - * reveal.js 2.2 r42 + * reveal.js 2.2 r43 * http://lab.hakim.se/reveal-js * MIT licensed * @@ -520,6 +520,35 @@ var Reveal = (function(){ } /** + * Stores the vertical index of a stack so that the same + * vertical slide can be selected when navigating to and + * from the stack. + * + * @param {HTMLElement} stack The vertical stack element + * @param {int} v Index to memorize + */ + function setPreviousVerticalIndex( stack, v ) { + if( stack ) { + stack.setAttribute( 'data-previous-indexv', v || 0 ); + } + } + + /** + * Retrieves the vertical index which was stored using + * #setPreviousVerticalIndex() or 0 if no previous index + * exists. + * + * @param {HTMLElement} stack The vertical stack element + */ + function getPreviousVerticalIndex( stack ) { + if( stack && stack.classList.contains( 'stack' ) ) { + return parseInt( stack.getAttribute( 'data-previous-indexv' ) || 0 ); + } + + return 0; + } + + /** * Displays the overview of slides (quick nav) by * scaling down and arranging all slide elements. * @@ -547,32 +576,40 @@ var Reveal = (function(){ hslide.style.OTransform = htransform; hslide.style.transform = htransform; - if( !hslide.classList.contains( 'stack' ) ) { - // Navigate to this slide on click - hslide.addEventListener( 'click', onOverviewSlideClicked, true ); - } + if( hslide.classList.contains( 'stack' ) ) { - var verticalSlides = hslide.querySelectorAll( 'section' ); + var verticalSlides = hslide.querySelectorAll( 'section' ); - for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) { - var vslide = verticalSlides[j], - vtransform = 'translate(0%, ' + ( ( j - ( i === indexh ? indexv : 0 ) ) * 105 ) + '%)'; + for( var j = 0, len2 = verticalSlides.length; j < len2; j++ ) { + var verticalIndex = i === indexh ? indexv : getPreviousVerticalIndex( hslide ); - vslide.setAttribute( 'data-index-h', i ); - vslide.setAttribute( 'data-index-v', j ); - vslide.style.display = 'block'; - vslide.style.WebkitTransform = vtransform; - vslide.style.MozTransform = vtransform; - vslide.style.msTransform = vtransform; - vslide.style.OTransform = vtransform; - vslide.style.transform = vtransform; + var vslide = verticalSlides[j], + vtransform = 'translate(0%, ' + ( ( j - verticalIndex ) * 105 ) + '%)'; - // Navigate to this slide on click - vslide.addEventListener( 'click', onOverviewSlideClicked, true ); + vslide.setAttribute( 'data-index-h', i ); + vslide.setAttribute( 'data-index-v', j ); + vslide.style.display = 'block'; + vslide.style.WebkitTransform = vtransform; + vslide.style.MozTransform = vtransform; + vslide.style.msTransform = vtransform; + vslide.style.OTransform = vtransform; + vslide.style.transform = vtransform; + + // Navigate to this slide on click + vslide.addEventListener( 'click', onOverviewSlideClicked, true ); + } + } + else { + // Navigate to this slide on click + hslide.addEventListener( 'click', onOverviewSlideClicked, true ); + + } } + layout(); + } } @@ -604,7 +641,7 @@ var Reveal = (function(){ element.removeEventListener( 'click', onOverviewSlideClicked ); } - slide(); + slide( indexh, indexv ); } } @@ -706,14 +743,14 @@ var Reveal = (function(){ // If no vertical index is specified and the upcoming slide is a // stack, resume at its previous vertical index - if( v === undefined && horizontalSlides[ h ] && horizontalSlides[ h ].classList.contains( 'stack' ) ) { - v = parseInt( horizontalSlides[ h ].getAttribute( 'data-previous-indexv' ) || 0 ); + if( v === undefined ) { + v = getPreviousVerticalIndex( horizontalSlides[ h ] ); } // If we were on a vertical stack, remember what vertical index // it was on so we can resume at the same position when returning if( previousSlide && previousSlide.parentNode.classList.contains( 'stack' ) ) { - previousSlide.parentNode.setAttribute( 'data-previous-indexv', indexv ); + setPreviousVerticalIndex( previousSlide.parentNode, indexv ); } // Remember the state before this slide @@ -1442,10 +1479,7 @@ var Reveal = (function(){ deactivateOverview(); - indexh = this.getAttribute( 'data-index-h' ); - indexv = this.getAttribute( 'data-index-v' ); - - slide(); + slide( parseInt( this.getAttribute( 'data-index-h' ) ), parseInt( this.getAttribute( 'data-index-v' ) ) ); } } |