Closed
Description
Steps to reproduce
- Use the following option to initialise the slider
vm.priceSlider = {
value: 200,
options: {
floor: 1,
ceil: 700,
showTicksValues: 70,
// translate: (value) => {
// if(value > 1) return value - 1;
//
// return value;
// },
showSelectionBar: true
}
}
Demo: http://jsfiddle.net/gfk1hzLp/ (fork this example and update the link)
Expected behaviour
The upper limit should not cross the ceil. The tick value label should also not cross the ceil
Actual behaviour
The upper limit is crossing the ceil, the tick value label is also crossing the ceil