diff options
author | Hakim El Hattab | 2011-12-23 21:52:35 -0800 |
---|---|---|
committer | Hakim El Hattab | 2011-12-23 21:52:35 -0800 |
commit | 1ac6386eef529bf717a726ea06cd0848b9a68bde (patch) | |
tree | c9f9f738b07a3424de4843e3361e7402d73206b7 /js | |
parent | b162a54c2d4a96ef6661953c6e4ccfdf940de3e2 (diff) |
fix padding and duplicate background on vertical slides in overview
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/js/reveal.js b/js/reveal.js index 9d14cbd..d751a03 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -118,8 +118,6 @@ var Reveal = (function(){ dom.controlsUp.addEventListener('click', preventAndForward( navigateUp ), false); dom.controlsDown.addEventListener('click', preventAndForward( navigateDown ), false); - - // Fall back on default options config.rollingLinks = options.rollingLinks === undefined ? true : options.rollingLinks; config.controls = options.controls === undefined ? false : options.controls; @@ -172,7 +170,6 @@ var Reveal = (function(){ * @param {Object} event */ function onDocumentKeyDown( event ) { - // FFT: Use document.querySelector( ':focus' ) === null // instead of checking contentEditable? @@ -247,11 +244,9 @@ var Reveal = (function(){ } slide(); - } } - /** * Handler for the window level 'hashchange' event. * @@ -410,7 +405,9 @@ var Reveal = (function(){ // Optimization; hide all slides that are three or more steps // away from the present slide - // slide.style.display = Math.abs( index - i ) > 3 ? 'none' : 'block'; + if( overviewIsActive() === false ) { + slide.style.display = Math.abs( index - i ) > 3 ? 'none' : 'block'; + } if( i < index ) { // Any element previous to index is given the 'past' class |