| 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: Cdn_RackSpaceCloudFiles_Page_View.js
*
* Rackspace Cloud Files settings page lightbox interactions.
*
* @package W3TC
* @since 2.0.0
*/
jQuery(function ($) {
function w3tc_rackspace_resize(o) {
o.resize();
}
$("body")
.on("click", ".w3tc_cdn_rackspace_authorize", function () {
W3tc_Lightbox.open({
id: "w3tc-overlay",
close: "",
width: 800,
height: 300,
url:
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonce("cdn_rackspace_authenticate") +
"&w3tc_action=cdn_rackspace_authenticate",
callback: w3tc_rackspace_resize,
});
})
.on("click", ".w3tc_popup_submit", function () {
// load_form POSTs w3tc_action from the form; match the hub token on the URL query.
var url =
ajaxurl +
"?action=w3tc_ajax&_wpnonce=" +
w3tcGetAjaxNonceForForm(".w3tc_cdn_rackspace_form");
W3tc_Lightbox.load_form(
url,
".w3tc_cdn_rackspace_form",
w3tc_rackspace_resize,
);
});
});