Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. (function () {
  2. "use strict";
  3.  
  4. function directive() {
  5. return {
  6. templateUrl: "{{$1:templateUrl}}"
  7. // scope : {miCampo:'=', miParametro:'@', miFuncion: '&'}
  8. };
  9. };
  10. angular
  11. .module("{{$2:module}}")
  12. .directive("{{$3:directive}}", directive)
  13.  
  14. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement