-
-
Notifications
You must be signed in to change notification settings - Fork 32.8k
Closed
Labels
scope: sliderChanges related to the slider.Changes related to the slider.
Description
This is probably because of this:
_updateWithChangeEvent: function(e, percent) {
if (this.state.percent === percent) return;
this.setPercent(percent);
var value = this._percentToValue(percent);
if (this.props.onChange) this.props.onChange(e, value);
},
For instance, a slider with min=10, max=100, step=10 does not give me 10 .. 20 .. 30 .. .. 100 but e.g.
98.07142857142857
98.39285714285714
99.03571428571429
99.35714285714286
99.67857142857143
Is this as intended?
Metadata
Metadata
Assignees
Labels
scope: sliderChanges related to the slider.Changes related to the slider.