testApp.js 176 B

12345678910
  1. angular.module("testApp", []).directive("sayHello", function() {
  2. return {
  3. scope: {
  4. to: '@to'
  5. },
  6. restrict: "E",
  7. template: '<p>Hello {{to}}</p>'
  8. };
  9. });