mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
87b6c253b5
For a full list of changes since beta 1, see 9e34dca...e580895
.
Props poena, melchoyce, luminuu, aristath, justinahinon, jffng, ryelle, kishanjasani, rolfsiebers.
See #51526.
Built from https://develop.svn.wordpress.org/trunk@49320
git-svn-id: http://core.svn.wordpress.org/trunk@49081 1a063a9b-81f0-0310-95a4-ce76da25c4cd
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
/**
|
|
* File polyfills.js.
|
|
*
|
|
* Polyfills for IE11.
|
|
*/
|
|
|
|
/**
|
|
* Polyfill for Element.closest() because we need to support IE11.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
|
|
*/
|
|
if ( ! Element.prototype.matches ) {
|
|
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
|
|
}
|
|
|
|
if ( ! Element.prototype.closest ) {
|
|
Element.prototype.closest = function( s ) {
|
|
var el = this;
|
|
do {
|
|
if ( Element.prototype.matches.call( el, s ) ) {
|
|
return el;
|
|
}
|
|
el = el.parentElement || el.parentNode;
|
|
} while ( el !== null && el.nodeType === 1 );
|
|
return null;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Polyfill for NodeList.foreach() because we need to support IE11.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach
|
|
*/
|
|
if ( window.NodeList && ! NodeList.prototype.forEach ) {
|
|
NodeList.prototype.forEach = function( callback, thisArg ) {
|
|
var i;
|
|
thisArg = thisArg || window;
|
|
for ( i = 0; i < this.length; i++ ) {
|
|
callback.call( thisArg, this[i], i, this );
|
|
}
|
|
};
|
|
}
|