(js/css) Update generated files

This commit is contained in:
InverseBot
2018-06-29 09:43:16 -04:00
parent f0636d17fe
commit 50ccf58ba4
36 changed files with 2320 additions and 1525 deletions
+5 -6
View File
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.6.10
* @license AngularJS v1.7.2
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -47,12 +47,11 @@ var htmlSanitizeWriter;
* Sanitizes an html string by stripping all potentially dangerous tokens.
*
* The input is sanitized by parsing the HTML into tokens. All safe tokens (from a whitelist) are
* then serialized back to properly escaped html string. This means that no unsafe input can make
* then serialized back to a properly escaped HTML string. This means that no unsafe input can make
* it into the returned string.
*
* The whitelist for URL sanitization of attribute values is configured using the functions
* `aHrefSanitizationWhitelist` and `imgSrcSanitizationWhitelist` of {@link ng.$compileProvider
* `$compileProvider`}.
* `aHrefSanitizationWhitelist` and `imgSrcSanitizationWhitelist` of {@link $compileProvider}.
*
* The input may also contain SVG markup if this is enabled via {@link $sanitizeProvider}.
*
@@ -316,7 +315,7 @@ function $SanitizeProvider() {
forEach = angular.forEach;
isArray = angular.isArray;
isDefined = angular.isDefined;
lowercase = angular.lowercase;
lowercase = angular.$$lowercase;
noop = angular.noop;
htmlParser = htmlParserImpl;
@@ -712,7 +711,7 @@ function sanitizeText(chars) {
// define ngSanitize module and register $sanitize service
angular.module('ngSanitize', [])
.provider('$sanitize', $SanitizeProvider)
.info({ angularVersion: '1.6.10' });
.info({ angularVersion: '1.7.2' });
/**
* @ngdoc filter