We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb0c93b commit 01fab2eCopy full SHA for 01fab2e
slider.js
@@ -22,13 +22,6 @@ angular.module('ui.bootstrap-slider', [])
22
initSlider();
23
24
function initSlider() {
25
-
26
- if (attrs.ngChange) {
27
- ngModelCtrl.$viewChangeListeners.push(function () {
28
- $scope.$apply(attrs.ngChange);
29
- });
30
- }
31
32
$.fn.slider.constructor.prototype.disable = function () {
33
this.picker.off();
34
};
@@ -37,12 +30,6 @@ angular.module('ui.bootstrap-slider', [])
37
this.picker.on();
38
39
40
41
42
43
44
45
46
var options = {};
47
if ($scope.sliderid) options.id = $scope.sliderid;
48
35
if ($scope.min) options.min = parseFloat($scope.min);
0 commit comments