(js/css) Update generated files

This commit is contained in:
InverseBot
2018-02-03 01:28:30 -05:00
parent 40b0704812
commit faed42094f
17 changed files with 728 additions and 604 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
/**
* @license AngularJS v1.6.8
* (c) 2010-2017 Google, Inc. http://angularjs.org
* @license AngularJS v1.6.9
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
@@ -274,7 +274,7 @@ function $SanitizeProvider() {
optionalEndTagElements);
//Attributes that have href and hence need to be sanitized
var uriAttrs = toMap('background,cite,href,longdesc,src,xlink:href');
var uriAttrs = toMap('background,cite,href,longdesc,src,xlink:href,xml:base');
var htmlAttrs = toMap('abbr,align,alt,axis,bgcolor,border,cellpadding,cellspacing,class,clear,' +
'color,cols,colspan,compact,coords,dir,face,headers,height,hreflang,hspace,' +
@@ -599,7 +599,7 @@ function sanitizeText(chars) {
// define ngSanitize module and register $sanitize service
angular.module('ngSanitize', [])
.provider('$sanitize', $SanitizeProvider)
.info({ angularVersion: '1.6.8' });
.info({ angularVersion: '1.6.9' });
/**
* @ngdoc filter