trAvis - MANAGER
Edit File: theplus-purge.js
(function ($) { "use strict"; // Clear cache files $(document).ready(function(){ if($("#wpadminbar .theplus-purge-clear").length > 0){ var ids="theplus-purge-clear"; var smart_action = "plus_purge_current_clear"; $('.'+ ids + ' .ab-submenu a').on("click", function(e) { e.preventDefault(); var $this = $(this); var href= $this.attr('href'); href = href.replace('#clear-',''); if(href=='theplus-all'){ var confirmation = confirm("Are you sure want to remove all cache files?"); }else{ var confirmation = true; } if(href && confirmation){ $.ajax({ url: theplus_ajax_url, type: "post", data: { action: smart_action, security: theplus_nonce, plus_name : href }, success: function(response) { if(response){ setTimeout(function() { location.reload(true); }, 50); } }, }); } }); } }); })(window.jQuery);