angularjs-slider
Advanced tools
Changelog
4.0.1 (2016-06-04)
Changelog
4.0.0 (2016-06-04)
stepsArray
: Bind rzSliderModel and rzSliderHigh to the actual value (#335).stepsArray
feature, you should directly provide the actual value to rzSliderModel and rzSliderHigh instead of passing the index of this value.
Thus, you need to update your config like in the following example:/* before 4.0 version */
vm.slider = {
value: 4, // index of the 'E' value in the array
options: {
stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''),
},
}
/* from 4.0 version */
vm.slider = {
value: 'E',
options: {
stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split(''),
},
}
Changelog
3.0.0 (2016-06-02)
rz-floor
and rz-ceil
classes to floor and ceil label to allow styling (#337).replace: true
. Thus, you need to update your custom CSS rules like in the following example:/* before 3.0 version */
rzslider {
color: red;
}
/* from 3.0 version */
.rzslider {
color: red;
}
Changelog
2.14.0 (2016-05-22)
minLimit
and maxLimit
options (#332).maxRange
option (#333).boundPointerLabels
option (#323).Changelog
2.13.0 (2016-04-24)
getLegend
option (#318).stepsArray
that can contain value
and legend
properties.Changelog
2.12.0 (2016-04-22)
Changelog
2.11.0 (2016-04-01)
Changelog
2.10.4 (2016-03-16)
Changelog
2.10.3 (2016-03-14)
Changelog
2.10.2 (2016-03-01)