I am working with angular and am making liberal use of the ng-include directive.
<div class="header" ng-include src= "'partials/header.html'"></div>
This is working great, so long as the file partials/header.html is found in my file system at the correct spot.
Is there a way to use an http address for this, instead of a local file? I haven't really found anything in the docs saying so. I mean something like this.
<div class="header" src= "'http://someaddress.com/partials/header.html'"></div>
Does anyone know if this either possible or if not, is there a similar workaround?