Guest User

Untitled

a guest
Jul 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. app.run(['$rootScope',function($rootScope){
  2.  
  3. $rootScope.stateIsLoading = false;
  4. $rootScope.$on('$routeChangeStart', function() {
  5. $rootScope.stateIsLoading = true;
  6. });
  7. $rootScope.$on('$routeChangeSuccess', function() {
  8. $rootScope.stateIsLoading = false;
  9. });
  10. $rootScope.$on('$routeChangeError', function() {
  11. //catch error
  12. });
  13.  
  14. }])
Add Comment
Please, Sign In to add comment