app.config.js 159 B

12345
  1. app.run(function($rootScope, $location) {
  2. $rootScope.$on('$routeChangeSuccess', function(){
  3. $rootScope.currentMenuItem = $location.path() || '/home';
  4. })
  5. })