myems/admin/js/plugins/oclazyload/examples/simpleExample/js/testApp.js

13 lines
230 B
Python

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