I am using templateUrl and it works great!
app.directive('myDir', function() { return { templateUrl: 'partials/directives/template.html' }; };
However ... when I make changes to these templates, it is not updated. This is not a big problem in development, because I know what is being updated, and can just clear the cache manually.
But I can not clear the cache of all users. Is there any way to do this? How to use the CACHE-CONTROL meta tag or something like that?
source share