Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit a873eb0

Browse files
committed
Replace $scope.$apply(refreshAttr) by $scope.$eval(refreshAttr)
1 parent 5f14675 commit a873eb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/select.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ angular.module('ui.select', [])
182182
$timeout.cancel(_refreshDelayPromise);
183183
}
184184
_refreshDelayPromise = $timeout(function() {
185-
$scope.$apply(refreshAttr);
185+
$scope.$eval(refreshAttr);
186186
}, ctrl.refreshDelay);
187187
}
188188
};

0 commit comments

Comments
 (0)