Cristi Socea
Results
1
issues of
Cristi Socea
Here's a sample of `run()` method ``` angular .module('portal', dependencies) .run(['$rootScope', '$http', 'ngProgress', 'NotifyService', function($rootScope, $http, ngProgress, Notify) { ngProgress.color('#66afda'); $rootScope.pendingRequests = $http.pendingRequests; $rootScope.$watch('pendingRequests', function(requests) { ngProgress[requests.length !== 0 ?...
enhancement