/home/desid573/verdenaturopathy.com.au/wp-content/plugins/wp-file-manager/lib/js/ui
NameSizeModeActions
button.js42190644editdlrm
contextmenu.js219690644editdlrm
cwd.js897550644editdlrm
dialog.js268310644editdlrm
fullscreenbutton.js6340644editdlrm
navbar.js53430644editdlrm
navdock.js44700644editdlrm
overlay.js9690644editdlrm
panel.js5590644editdlrm
path.js53440644editdlrm
places.js165910644editdlrm
searchbutton.js102870644editdlrm
sortbutton.js37500644editdlrm
stat.js34780644editdlrm
toast.js26890644editdlrm
toolbar.js100980644editdlrm
tree.js415750644editdlrm
uploadButton.js10720644editdlrm
viewbutton.js7700644editdlrm
workzone.js14550644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/wp-content/plugins/wp-file-manager/lib/js/ui/overlay.js (969B)
jQuery.fn.elfinderoverlay = function(opts) { "use strict"; var fm = this.parent().elfinder('instance'), o, cnt, show, hide; this.filter(':not(.elfinder-overlay)').each(function() { opts = Object.assign({}, opts); jQuery(this).addClass('ui-front ui-widget-overlay elfinder-overlay') .hide() .on('mousedown', function(e) { e.preventDefault(); e.stopPropagation(); }) .data({ cnt : 0, show : typeof(opts.show) == 'function' ? opts.show : function() { }, hide : typeof(opts.hide) == 'function' ? opts.hide : function() { } }); }); if (opts == 'show') { o = this.eq(0); cnt = o.data('cnt') + 1; show = o.data('show'); fm.toFront(o); o.data('cnt', cnt); if (o.is(':hidden')) { o.show(); show(); } } if (opts == 'hide') { o = this.eq(0); cnt = o.data('cnt') - 1; hide = o.data('hide'); o.data('cnt', cnt); if (cnt <= 0) { o.hide(); hide(); } } return this; };