apollodec/Apollo/bower_components/oclazyload/examples/simpleExample/js/testApp.js
saravanakumar_kandasami 7d72a0b91a updated code
2017-11-21 14:56:39 +05:30

10 lines
176 B
JavaScript

angular.module("testApp", []).directive("sayHello", function() {
return {
scope: {
to: '@to'
},
restrict: "E",
template: '<p>Hello {{to}}</p>'
};
});