File Editor
Directories:
.. (Back)
Files:
lodash.js
lodash.min.js
moment.js
moment.min.js
react-dom.js
react-dom.min.js
react.js
react.min.js
wp-polyfill-element-closest.js
wp-polyfill-element-closest.min.js
wp-polyfill-fetch.js
wp-polyfill-fetch.min.js
wp-polyfill-formdata.js
wp-polyfill-formdata.min.js
wp-polyfill-node-contains.js
wp-polyfill-node-contains.min.js
wp-polyfill.js
wp-polyfill.min.js
Create New File
Create
Edit File: wp-polyfill-element-closest.js
// element-closest | CC0-1.0 | github.com/jonathantneal/closest (function (ElementProto) { if (typeof ElementProto.matches !== 'function') { ElementProto.matches = ElementProto.msMatchesSelector || ElementProto.mozMatchesSelector || ElementProto.webkitMatchesSelector || function matches(selector) { var element = this; var elements = (element.document || element.ownerDocument).querySelectorAll(selector); var index = 0; while (elements[index] && elements[index] !== element) { ++index; } return Boolean(elements[index]); }; } if (typeof ElementProto.closest !== 'function') { ElementProto.closest = function closest(selector) { var element = this; while (element && element.nodeType === 1) { if (element.matches(selector)) { return element; } element = element.parentNode; } return null; }; } })(window.Element.prototype);
Save Changes
Rename File
Rename