tbfe/generator-mis

View on GitHub
app/templates/static/project/directives/sidebar/_sidebar.js

Summary

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