Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. (function() {
  2. "use strict";
  3.  
  4. angular
  5. .module("{{$1:moduleName}}")
  6. .directive("{{$2:directiveName}}", function () {
  7. return {
  8. restrict: "AEC",
  9. // template: "Name: {{customer.name}} Address: {{customer.address}}",
  10. // templateUrl: "my-customer.html",
  11. // transclude: true,
  12. // scope: { customerInfo: "=" },
  13. link: function (scope, element, attrs) {
  14. {{!cursor}}
  15. }
  16. };
  17. });
  18.  
  19. }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement