mirror of
https://github.com/wassname/slider.git
synced 2026-09-09 11:35:22 +08:00
bug fix
This commit is contained in:
+1
-1
@@ -82,7 +82,7 @@ var Slider = React.createClass({
|
||||
return Math.floor((value - props.min) / props.step);
|
||||
} else {
|
||||
var unit = ((props.max - props.min) / (props.marks.length - 1)).toFixed(5);
|
||||
return Math.ceil(value / unit);
|
||||
return Math.round(value / unit);
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user