diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dd51d499b47..0f77b08402e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1156,7 +1156,7 @@ You configure this list in a module configuration block: ```js appModule.config(['$sceDelegateProvider', function($sceDelegateProvider) { - $sceDelegateProvider.resourceUrlWhiteList([ + $sceDelegateProvider.resourceUrlWhitelist([ // Allow same origin resource loads. 'self', // Allow JSONP calls that match this pattern @@ -2567,7 +2567,7 @@ You configure this list in a module configuration block: ```js appModule.config(['$sceDelegateProvider', function($sceDelegateProvider) { - $sceDelegateProvider.resourceUrlWhiteList([ + $sceDelegateProvider.resourceUrlWhitelist([ // Allow same origin resource loads. 'self', // Allow JSONP calls that match this pattern diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index ea99c55e070e..6a2c25787cff 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -588,7 +588,7 @@ trust a URL: ```js appModule.config(['$sceDelegateProvider', function($sceDelegateProvider) { - $sceDelegateProvider.resourceUrlWhiteList([ + $sceDelegateProvider.resourceUrlWhitelist([ // Allow same origin resource loads. 'self', // Allow JSONP calls that match this pattern