PluginProbe ʕ •ᴥ•ʔ
Aruba HiSpeed Cache / 3.0.15
Aruba HiSpeed Cache v3.0.15
3.0.15 3.0.14 3.0.13 1.2.4 1.2.5 1.2.6 2.0.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.14 2.0.15 2.0.16 2.0.17 2.0.18 2.0.19 2.0.20 2.0.21 2.0.22 2.0.23 2.0.24 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 3.0.0 3.0.1 3.0.10 3.0.11 3.0.12 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3
aruba-hispeed-cache / assets / js / debug_status.js
aruba-hispeed-cache / assets / js Last commit date
debug_status.js 5 months ago index.php 5 months ago toolbar.js 5 months ago
debug_status.js
23 lines
1 jQuery(document).ready(function(){
2 if(jQuery('#ahsc_debug_disable')){
3 jQuery('#ahsc_debug_disable').on('click',function (e,o){
4 $button=this;
5 jQuery.ajax({
6 type : "post",
7 dataType : "json",
8 url : AHSC_DEBUG_OPTIONS_CONFIGS.ahsc_ajax_url,
9 data : {action: "ahsc_disable_debug",ahsc_nonce:AHSC_DEBUG_OPTIONS_CONFIGS.ahsc_nonce},
10 success: function(response) {
11 //console.log("response:"+response)
12 jQuery($button).remove();
13 jQuery("#ahsc_debug_status_message").html(AHSC_DEBUG_OPTIONS_CONFIGS.asc_result_message)
14 jQuery("#ahsc_debug_status_message").parent('.notice').removeClass("notice-warning");
15 jQuery("#ahsc_debug_status_message").parent('.notice').addClass("notice-success");
16 setTimeout(function () {
17 jQuery("#ahsc_debug_status_message").parent('.notice').fadeOut('fast');
18 }, 1000);
19 }
20 });
21 })
22 }
23 })