🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 20:26:28 | PHP 8.1.34
📂
/ (Root)
/
var
/
softaculous
/
sitepad
/
editor
/
site-inc
/
js
/
dist
/
vendor
📍 /var/softaculous/sitepad/editor/site-inc/js/dist/vendor
🔄 Refresh
✏️
Editing: wp-polyfill-element-closest.js
Read Only
// 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
❌ Cancel