The angularjs-slider should display values without commans, and only on the min max values display comma values. Example: [6.5, 7, 8, .... , 31, 31.5]
If I set
$scope.slider = {
value: 31.5,
options: {
floor: 6.5,
ceil: 31.5,
step: 1,
precision: 1
}
};
the values are [6.5, 7.5, 8.5 ... 31.5]
How can I set this?