I have a directive in AngularJS 1.4:
app.directive('queryEditor', ['Util', function(Util) {
return {
scope: { .... },
restrict: 'E',
templateUrl:
Util.templatePathFor('/templates/directives/query-editor.html'),
link: ....
};}]);
When I try to convert to angular 1.5 component, how can I reference to the Util
service being injected for the templateUrl?
app.component('queryEditor', {
scope: { .... },
restrict: 'E',
templateUrl: ...what do i put here...});
--
You received this message because you are subscribed to the Google Groups
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.