I want to configure my angular module like this:
var app = angular.module('myModule', []).config(function ($sceDelegateProvider) {
$sceDelegateProvider.resourceUrlWhitelist([
...
]);
});
But when I minify the js file the $sceDelegateProvider
parameter is being convert to shorter name.
I didnt find a way to pass the parameter name as a string. (like it is in the module constructor)
Thanks.