Source Code: (back to article)
...
module.directive("myDirective",function(){
return {
...
templateUrl: function(elem,attrs){
// MACHEN Sie, was Sie möchten
return anyUrl;
},
link: function(scope, el, attrs){
}
}
})