diff options
author | Hakim El Hattab | 2013-08-18 00:01:28 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-18 00:01:28 -0400 |
commit | 271bae6b563ef1a625cf582934d589759cec7db7 (patch) | |
tree | d16d930c633973f4fb9f09ce51667f2e45f9eec0 /js/reveal.js | |
parent | 3dc53b891d54120bf0db7f26cb6e829f7b889736 (diff) |
allow hiding of vertical slide stacks
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/js/reveal.js b/js/reveal.js index 4ce8f3b..9c8b4b0 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1688,11 +1688,10 @@ var Reveal = (function(){ // Loops so that it measures 1 between the first and last slides distanceX = Math.abs( ( indexh - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0; - if( verticalSlidesLength ) { + // Show the horizontal slide if it's within the view distance + horizontalSlide.style.display = distanceX > viewDistance ? 'none' : 'block'; - // Always show the vertical stack itself, even if its child - // slides are invisible - horizontalSlide.style.display = 'block'; + if( verticalSlidesLength ) { var oy = getPreviousVerticalIndex( horizontalSlide ); @@ -1705,11 +1704,6 @@ var Reveal = (function(){ } } - else { - - horizontalSlide.style.display = distanceX > viewDistance ? 'none' : 'block'; - - } } } |