We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Want to cachebust those ng-include and templateUrl assets? Check out this solution:
ng-include
templateUrl
myAppModule.config(['$routeProvider', '$provide', function($routeProvider, $provide) { $provide.decorator('$http', ['$delegate', function($delegate){ var get = $delegate.get; $delegate.get = function(url, config){ url += (url.indexOf('?') !== -1) ? '?' : '&'; url += 'v=' + cacheBustVersion; return get(url, config); }; return $delegate; }]);