(js/css) Update generated files

This commit is contained in:
InverseBot
2017-11-25 01:28:04 -05:00
parent 2c86f68fb9
commit c9c6b0dc9f
20 changed files with 990 additions and 694 deletions
+5 -10
View File
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.6.6
* @license AngularJS v1.6.7
* (c) 2010-2017 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -32,13 +32,8 @@ var htmlSanitizeWriter;
* @name ngSanitize
* @description
*
* # ngSanitize
*
* The `ngSanitize` module provides functionality to sanitize HTML.
*
*
* <div doc-module-components="ngSanitize"></div>
*
* See {@link ngSanitize.$sanitize `$sanitize`} for usage.
*/
@@ -604,7 +599,7 @@ function sanitizeText(chars) {
// define ngSanitize module and register $sanitize service
angular.module('ngSanitize', [])
.provider('$sanitize', $SanitizeProvider)
.info({ angularVersion: '1.6.6' });
.info({ angularVersion: '1.6.7' });
/**
* @ngdoc filter
@@ -612,13 +607,13 @@ angular.module('ngSanitize', [])
* @kind function
*
* @description
* Finds links in text input and turns them into html links. Supports `http/https/ftp/mailto` and
* Finds links in text input and turns them into html links. Supports `http/https/ftp/sftp/mailto` and
* plain email address links.
*
* Requires the {@link ngSanitize `ngSanitize`} module to be installed.
*
* @param {string} text Input text.
* @param {string} target Window (`_blank|_self|_parent|_top`) or named frame to open links in.
* @param {string} [target] Window (`_blank|_self|_parent|_top`) or named frame to open links in.
* @param {object|function(url)} [attributes] Add custom attributes to the link element.
*
* Can be one of:
@@ -735,7 +730,7 @@ angular.module('ngSanitize', [])
*/
angular.module('ngSanitize').filter('linky', ['$sanitize', function($sanitize) {
var LINKY_URL_REGEXP =
/((ftp|https?):\/\/|(www\.)|(mailto:)?[A-Za-z0-9._%+-]+@)\S*[^\s.;,(){}<>"\u201d\u2019]/i,
/((s?ftp|https?):\/\/|(www\.)|(mailto:)?[A-Za-z0-9._%+-]+@)\S*[^\s.;,(){}<>"\u201d\u2019]/i,
MAILTO_REGEXP = /^mailto:/i;
var linkyMinErr = angular.$$minErr('linky');