Merge pull request #1434 from mikemellor11/master

stops parallax failing if only the single horizontal slide and multiple vertical
master
Hakim El Hattab 2015-11-19 09:51:37 +01:00
commit 31550d09e4
1 changed files with 1 additions and 1 deletions

View File

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