summaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorCristiano Cortezia2014-01-16 14:44:32 -0200
committerCristiano Cortezia2014-01-16 14:44:32 -0200
commitd9513b34d58da2e744719f6cc78c1bf99c2aa601 (patch)
tree37ed34b9219ed370e7f2255561116831eed8529e /js
parent8b8cc607d4e02ca51c4256175b9cc861f75b70e3 (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.js2
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';