UNPKG

generator-ngfs

Version:

Yeoman generator for creating MEAN stack applications, using MongoDB, Express, AngularJS, and Node

13 lines (11 loc) 310 B
'use strict'; angular.module('<%= scriptAppName %>') .directive('<%= cameledName %>', function () { return { template: '<div></div>', restrict: 'E', link: function postLink(scope, element, attrs) { element.text('this is the <%= cameledName %> directive'); } }; });