This repository was archived by the owner on May 25, 2019. It is now read-only.

Description
Is it possible to change max value when slider is already created and used?
I tried that approach:
$scope.slider = {
options: {
range: false,
min: 1,
max: $scope.selectedQuant.maxValue,
step: 1
}
};
[....skip...]
$scope.slider.options.max = $scope.selectedQuant.maxValue
but it doesn't works.