tbfe/generator-mis

View on GitHub
app/templates/static/project/directives/navbar/_navbar.js

Summary

Maintainability
A
2 hrs
Test Coverage
angular.module('<%= projectName %>').directive('navbar', ['$rootScope',function($rootScope) {
    return {
        restrict: 'AE',
        replace: true,
        templateUrl: __uri('navbar.html'),
        link:function($scope){
            $scope.active=$rootScope.active;
        }
    };
}]);