apollo_developers/bower_components/oclazyload/examples/simpleExample/js/testApp.js
venbatechnologies@gmail.com 1809bcf9c9 fixed table for student details
2018-04-23 18:34:11 +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>'
};
});