This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Dynamic templateUrl in directives #1039
Closed
Description
I'd like to be able to have templateUrl be configurable
eg
<my-directive templateUrl="hard-coded-path'>
Right now, this can be done via compile()
compile:function(tElement, tAttrs, transclude) {
var html = $templateCache.get(tAttrs.templateUrl);
tElement.html(html);
},
Problem is this only works for inline template, I'd like to be able to fetch it via network if it is not available yet.
Ideally, the delayed compile function associated with templateUrl processing in Angular should be exposed to directive writers.
Very ideally, I'd like to be able to
<my-directive templateUrl="{{scope.templateUrl}}">