Closed
Description
Steps to reproduce
- Install slider
- Include slider
- Move slider
Expected behavior
Slider doesn't go back when moved.
Actual behavior
The slider shows a strange behavior: when I start to move the slider (also for a very very little step ahead or behind) it goes always back of a big step. I know it's difficult to understand so I loaded this video on YouTube. And this is my slider (HTML + Controller):
<rzslider rz-slider-model="slider.min" rz-slider-high="slider.max" rz-slider-options="slider.options"> </rzslider>
$scope.slider = min: 100, max: 180, options: { floor: 0, ceil: 200, step: 5, noSwitching: true, getSelectionBarColor: function () { return '#F06820'; }, getPointerColor: function () { return '#042863'; }, translate: function (value) { return value + ' kW'; }, onEnd: function() { //DO SOMETHING } } };