generator-angular-blueprint
Version:
Yeoman angular generator that allows you to override global templates with your own!
30 lines (22 loc) • 378 B
JavaScript
;
/**
* @ngdoc directive
*
* @name <%= cameledName %>
*
* @description
* directive for <%= appName %>
*/
(function () {
angular
.module('<%= appName %>')
.directive('<%= cameledName %>', <%= cameledName %>);
function <%= cameledName %>() {
return {
restrict: 'A',
link: link
};
function link() {
}
}
})();