| Server IP : 130.225.57.55 / Your IP : 216.73.216.60 Web Server : Apache System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/ |
Upload File : |
/**
* File: Minify_GeneralPage_View_ShowHelp.js
*
* @since 2.10.0
*
* @package W3TC
*/
/**
* Opens the minify enablement confirmation lightbox.
*
* @since 2.0.0
*
* @return void
*/
function w3tc_show_minify_help() {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 800,
height: 610,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("minify_help") +
"&w3tc_action=minify_help",
callback: function (lightbox) {
jQuery(".btn-primary", lightbox.container).click(function () {
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
});
jQuery(".lightbox-close").click(function () {
jQuery("#minify__enabled").prop("checked", false);
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
});
jQuery(document).on("keyup.w3tc_lightbox", function (e) {
if ("Escape" === e.key) {
jQuery("#minify__enabled").prop("checked", false);
jQuery(document).off("keyup.w3tc_lightbox"); // Cleanup event listener.
lightbox.close();
}
});
lightbox.resize();
},
});
}
jQuery(function ($) {
$("#minify__enabled").click(function () {
var checked = $(this).is(":checked");
if (!checked) return;
w3tc_show_minify_help();
});
});