(js/css) Update generated files

This commit is contained in:
InverseBot
2017-01-12 01:31:09 -05:00
parent e5d0b0b0ca
commit 905859053c
16 changed files with 2455 additions and 2014 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.5.10
* @license AngularJS v1.6.1
* (c) 2010-2016 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -383,7 +383,7 @@ function $SanitizeProvider() {
var nextNode;
if (!(nextNode = node.firstChild)) {
if (node.nodeType === 1) {
if (node.nodeType === 1) {
handler.end(node.nodeName.toLowerCase());
}
nextNode = node.nextSibling;
@@ -392,7 +392,7 @@ function $SanitizeProvider() {
node = node.parentNode;
if (node === inertBodyElement) break;
nextNode = node.nextSibling;
if (node.nodeType === 1) {
if (node.nodeType === 1) {
handler.end(node.nodeName.toLowerCase());
}
}