@@ -239,7 +239,7 @@ module.exports = window.angular;
239239 var obj = {};
240240 var key;
241241 var len = keys.length;
242- var valuesCount = values ? value .length : 0;
242+ var valuesCount = values ? values .length : 0;
243243 for (var i = 0; i < len; i++) {
244244 key = keys[i];
245245 obj[key] = i < valuesCount ? values[i] : undefined;
@@ -1962,14 +1962,14 @@ module.exports = Message;
19621962/***/ (function(module, exports, __webpack_require__) {
19631963
19641964var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
1965- * jQuery JavaScript Library v3.7.0
1965+ * jQuery JavaScript Library v3.7.1
19661966 * https://jquery.com/
19671967 *
19681968 * Copyright OpenJS Foundation and other contributors
19691969 * Released under the MIT license
19701970 * https://jquery.org/license
19711971 *
1972- * Date: 2023-05-11T18:29Z
1972+ * Date: 2023-08-28T13:37Z
19731973 */
19741974( function( global, factory ) {
19751975
@@ -2110,7 +2110,7 @@ function toType( obj ) {
21102110
21112111
21122112
2113- var version = "3.7.0 ",
2113+ var version = "3.7.1 ",
21142114
21152115 rhtmlSuffix = /HTML$/i,
21162116
@@ -2374,9 +2374,14 @@ jQuery.extend( {
23742374 // Do not traverse comment nodes
23752375 ret += jQuery.text( node );
23762376 }
2377- } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
2377+ }
2378+ if ( nodeType === 1 || nodeType === 11 ) {
23782379 return elem.textContent;
2379- } else if ( nodeType === 3 || nodeType === 4 ) {
2380+ }
2381+ if ( nodeType === 9 ) {
2382+ return elem.documentElement.textContent;
2383+ }
2384+ if ( nodeType === 3 || nodeType === 4 ) {
23802385 return elem.nodeValue;
23812386 }
23822387
@@ -3089,12 +3094,17 @@ function setDocument( node ) {
30893094 documentElement.msMatchesSelector;
30903095
30913096 // Support: IE 9 - 11+, Edge 12 - 18+
3092- // Accessing iframe documents after unload throws "permission denied" errors (see trac-13936)
3093- // Support: IE 11+, Edge 17 - 18+
3094- // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
3095- // two documents; shallow comparisons work.
3096- // eslint-disable-next-line eqeqeq
3097- if ( preferredDoc != document &&
3097+ // Accessing iframe documents after unload throws "permission denied" errors
3098+ // (see trac-13936).
3099+ // Limit the fix to IE & Edge Legacy; despite Edge 15+ implementing `matches`,
3100+ // all IE 9+ and Edge Legacy versions implement `msMatchesSelector` as well.
3101+ if ( documentElement.msMatchesSelector &&
3102+
3103+ // Support: IE 11+, Edge 17 - 18+
3104+ // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
3105+ // two documents; shallow comparisons work.
3106+ // eslint-disable-next-line eqeqeq
3107+ preferredDoc != document &&
30983108 ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {
30993109
31003110 // Support: IE 9 - 11+, Edge 12 - 18+
@@ -4657,12 +4667,12 @@ jQuery.find = find;
46574667jQuery.expr[ ":" ] = jQuery.expr.pseudos;
46584668jQuery.unique = jQuery.uniqueSort;
46594669
4660- // These have always been private, but they used to be documented
4661- // as part of Sizzle so let's maintain them in the 3.x line
4662- // for backwards compatibility purposes.
4670+ // These have always been private, but they used to be documented as part of
4671+ // Sizzle so let's maintain them for now for backwards compatibility purposes.
46634672find.compile = compile;
46644673find.select = select;
46654674find.setDocument = setDocument;
4675+ find.tokenize = tokenize;
46664676
46674677find.escape = jQuery.escapeSelector;
46684678find.getText = jQuery.text;
@@ -7876,7 +7886,7 @@ function domManip( collection, args, callback, ignored ) {
78767886 if ( hasScripts ) {
78777887 doc = scripts[ scripts.length - 1 ].ownerDocument;
78787888
7879- // Reenable scripts
7889+ // Re-enable scripts
78807890 jQuery.map( scripts, restoreScript );
78817891
78827892 // Evaluate executable scripts on first document insertion
@@ -8333,7 +8343,7 @@ var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
83338343 trChild = document.createElement( "div" );
83348344
83358345 table.style.cssText = "position:absolute;left:-11111px;border-collapse:separate";
8336- tr.style.cssText = "border:1px solid";
8346+ tr.style.cssText = "box-sizing:content-box; border:1px solid";
83378347
83388348 // Support: Chrome 86+
83398349 // Height set through cssText does not get applied.
@@ -8345,7 +8355,7 @@ var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
83458355 // In our bodyBackground.html iframe,
83468356 // display for all div elements is set to "inline",
83478357 // which causes a problem only in Android 8 Chrome 86.
8348- // Ensuring the div is display: block
8358+ // Ensuring the div is ` display: block`
83498359 // gets around this issue.
83508360 trChild.style.display = "block";
83518361
@@ -12513,7 +12523,9 @@ jQuery.fn.extend( {
1251312523 },
1251412524
1251512525 hover: function( fnOver, fnOut ) {
12516- return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
12526+ return this
12527+ .on( "mouseenter", fnOver )
12528+ .on( "mouseleave", fnOut || fnOver );
1251712529 }
1251812530} );
1251912531
@@ -131560,4 +131572,4 @@ let robot_Robot = /*#__PURE__*/function (_EventEmitter) {
131560131572
131561131573/***/ })
131562131574/******/ ]);
131563- //# sourceMappingURL=entry-8361df675133537cf501 .js.map
131575+ //# sourceMappingURL=entry-40a83b2a4e147d986d3a .js.map
0 commit comments