zillow / react-slider

Accessible, CSS agnostic, slider component for React.
https://zillow.github.io/react-slider
MIT License
892 stars 231 forks source link

Handle props.max == props.min #85

Closed turadg closed 8 years ago

turadg commented 8 years ago

Without this, if max==min then _calcOffset returns NaN. This causes the shallowEqual call in React's checkAndWarnForMutatedStyle to return false because NaN equals nothing, including itself.

Fixes #61


This change is Reviewable

jamesbrauman commented 8 years ago

Looks good to me, thanks for the pull request.