Created
November 27, 2014 07:28
-
-
Save hansmaad/b9884e6caf6ba01d1195 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function({{$1:moduleName}}){ | |
'use strict'; | |
angular.module('{{$2:angularModule}}') | |
.directive('{{$3:directive}}', {{$3:directive}}); | |
function {{$3:directive}}() { | |
return { | |
restrict : 'E', | |
templateUrl : '', | |
link : link | |
}; | |
function link(scope, element, attr) { | |
{{!cursor}} | |
} | |
} | |
})(window.{{$1:moduleName}} = window.{{$1:moduleName}} || {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment