Forráskód Böngészése

Merge pull request #1434 from mikemellor11/master

stops parallax failing if only the single horizontal slide and multiple vertical
Hakim El Hattab 9 éve
szülő
commit
31550d09e4
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -2798,7 +2798,7 @@
 				horizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;
 			}
 			else {
-				horizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );
+				horizontalOffsetMultiplier = ( horizontalSlideCount-1  > 0) ? ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) : 0;
 			}
 
 			horizontalOffset = horizontalOffsetMultiplier * indexh * -1;