JLBoor/generator-jlb-angular

View on GitHub
directive/templates/complex/directive.js

Summary

Maintainability
A
0 mins
Test Coverage
angular.module('<%= appname %>').directive('<%= _.camelize(name) %>', function() {
    return {
        restrict: 'E',
        replace: true,
        scope: {

        },
        templateUrl: '<%= htmlPath %>',
        link: function(scope, element, attrs, fn) {


        }
    };
});