Selaa lähdekoodia

check for 0 division, stops parallax failing if only the single horizontal slide and multiple vertical

Mike Mellor 9 vuotta sitten
vanhempi
commit
3e42929f90
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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;