Merge pull request #1434 from mikemellor11/master
stops parallax failing if only the single horizontal slide and multiple vertical
This commit is contained in:
		| @@ -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; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user