apollodec/Apollo/bower_components/oclazyload/examples/simpleExample/js/testApp.js
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

10 lines
176 B
JavaScript
Executable File

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