diff options
author | Cristiano Cortezia | 2014-01-16 14:44:32 -0200 |
---|---|---|
committer | Cristiano Cortezia | 2014-01-16 14:44:32 -0200 |
commit | d9513b34d58da2e744719f6cc78c1bf99c2aa601 (patch) | |
tree | 37ed34b9219ed370e7f2255561116831eed8529e /js | |
parent | 8b8cc607d4e02ca51c4256175b9cc861f75b70e3 (diff) |
Fixes bad NaN applied to style on updateParallax.
The previous criteria "verticalSlideCount > 0" would result
in verticalOffset being NaN when verticalSlideCount == 1.
This would cause dom.background.style.backgroundPosition to
be set to something like "123px NaNpx", ultimately preventing
the parallax effect to play (silently failing so far).
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index 98d802e..b7764d3 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2032,7 +2032,7 @@ var Reveal = (function(){ var slideHeight = dom.background.offsetHeight; var verticalSlideCount = verticalSlides.length; - var verticalOffset = verticalSlideCount > 0 ? -( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 ) * indexv : 0; + var verticalOffset = verticalSlideCount > 1 ? -( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 ) * indexv : 0; dom.background.style.backgroundPosition = horizontalOffset + 'px ' + verticalOffset + 'px'; |