generator-aspnetpostgresql
Version:
Yeoman generator for ASP.NET MVC Core apps with PostgreSQL support
25 lines (19 loc) • 424 B
JavaScript
(function() {
'use strict';
angular
.module('<%= namespace %>')
.directive('directive', directive);
directive.$inject = ['$window'];
function directive($window) {
// Usage:
// <directive></directive>
// Creates:
//
var directive = {
link: link,
restrict: 'EA'
};
return directive;
function link(scope, element, attrs) {}
}
})();