Update WordPress packages.
Updates the WordPress packages to their most recent patch versions. Props xknown, sergey, audrasjb. Built from https://develop.svn.wordpress.org/branches/5.7@52847 git-svn-id: http://core.svn.wordpress.org/branches/5.7@52436 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
072d23667d
commit
9c065b7134
File diff suppressed because one or more lines are too long
|
@ -3546,7 +3546,6 @@ function (_super) {
|
|||
};
|
||||
|
||||
_this.onTouchStart = function (e) {
|
||||
e.preventDefault();
|
||||
document.addEventListener('touchmove', _this.onTouchMove, {
|
||||
passive: false
|
||||
}); // iOS 11 now defaults to passive: true
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -665,9 +665,10 @@ function setPath(object, path, value) {
|
|||
// If key is empty string and next value is array, derive key from
|
||||
// the current length of the array.
|
||||
key = object.length.toString();
|
||||
} // If the next key in the path is numeric (or empty string), it will be
|
||||
// created as an array. Otherwise, it will be created as an object.
|
||||
}
|
||||
|
||||
key = ['__proto__', 'constructor', 'prototype'].includes(key) ? key.toUpperCase() : key; // If the next key in the path is numeric (or empty string), it will be
|
||||
// created as an array. Otherwise, it will be created as an object.
|
||||
|
||||
var isNextKeyArrayIndex = !isNaN(Number(path[i + 1]));
|
||||
object[key] = i === lastIndex ? // If at end of path, assign the intended value.
|
||||
|
@ -721,7 +722,7 @@ function getQueryArgs(url) {
|
|||
}
|
||||
|
||||
return accumulator;
|
||||
}, {});
|
||||
}, Object.create(null));
|
||||
}
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/@wordpress/url/build-module/add-query-args.js
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue