Base solution for your next web application
Open Closed

Show a progressbar when switching between views #196


User avatar
0
behiunforgiven created

Can I Show a progressbar when views change?


3 Answer(s)
  • User Avatar
    0
    behiunforgiven created

    Can We Use ngProgress ? How?

  • User Avatar
    0
    behiunforgiven created

    I add Some code in header.js and it works !

    $rootScope.$on('$routeChangeStart', function() {
        ngProgress.start();
      });
    
      $rootScope.$on('$routeChangeSuccess', function() {
        ngProgress.complete();
      });
    
  • User Avatar
    0
    hikalkan created
    Support Team

    Thanks for information sharing.