Jason Maggard
Results
2
comments of
Jason Maggard
Just wanted to share a workaround for this issue. ``` JavaScript $('#mainTabs a[href="#tab4"]').on('shown', function(event) { $scope.$apply(function () {$scope.im_crate = $scope.im_crate * 1;}); }); ``` My sliders are on "tab4". So...
Use jQuery to attach the handler. ``` // Code goes here angular.module('testApp', ['uiSlider']) .controller('testCtrl', function($scope) { $scope.position = { minAge: 20, maxAge: 40 }; $scope.position2 = { minAge: 20, maxAge:...