mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
ca80466039
`wp-date` recently added the `datetimeAbbreviated` format, but the config wasn't sending it on page load. Props pento. Merges [43818] to trunk. Fixes #45158. Built from https://develop.svn.wordpress.org/trunk@44162 git-svn-id: http://core.svn.wordpress.org/trunk@43992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
31 lines
531 B
JavaScript
31 lines
531 B
JavaScript
(function() {
|
|
|
|
function contains(node) {
|
|
if (!(0 in arguments)) {
|
|
throw new TypeError('1 argument is required');
|
|
}
|
|
|
|
do {
|
|
if (this === node) {
|
|
return true;
|
|
}
|
|
} while (node = node && node.parentNode);
|
|
|
|
return false;
|
|
}
|
|
|
|
// IE
|
|
if ('HTMLElement' in this && 'contains' in HTMLElement.prototype) {
|
|
try {
|
|
delete HTMLElement.prototype.contains;
|
|
} catch (e) {}
|
|
}
|
|
|
|
if ('Node' in this) {
|
|
Node.prototype.contains = contains;
|
|
} else {
|
|
document.contains = Element.prototype.contains = contains;
|
|
}
|
|
|
|
}());
|