????JFIF??x?x????'
Server IP : 104.21.96.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/motopress-content-editor/jquery/dom/closest/ |
Upload File : |
/** * @add jQuery.fn */ steal('jquery/dom').then(function(){ /** * @function closest * @parent dom * @plugin jquery/dom/closest * Overwrites closest to allow open > selectors. This allows controller * actions such as: * * ">li click" : function( el, ev ) { ... } */ var oldClosest = jQuery.fn.closest; jQuery.fn.closest = function(selectors, context){ var rooted = {}, res, result, thing, i, j, selector, rootedIsEmpty = true, selector, selectorsArr = selectors; if(typeof selectors == "string") selectorsArr = [selectors]; $.each(selectorsArr, function(i, selector){ if(selector.indexOf(">") == 0 ){ if(selector.indexOf(" ") != -1){ throw " closest does not work with > followed by spaces!" } rooted[( selectorsArr[i] = selector.substr(1) )] = selector; if(typeof selectors == "string") selectors = selector.substr(1); rootedIsEmpty = false; } }) res = oldClosest.call(this, selectors, context); if(rootedIsEmpty) return res; i =0; while(i < res.length){ result = res[i], selector = result.selector; if (rooted[selector] !== undefined) { result.selector = rooted[selector]; rooted[selector] = false; if(typeof result.selector !== "string" || result.elem.parentNode !== context ){ res.splice(i,1); continue; } } i++; } return res; } })