apollo_developers/bower_components/oclazyload/examples/simpleExample/js/testApp.js
2018-04-19 11:48:46 +05:30

10 lines
176 B
JavaScript

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