| Server IP : 219.234.31.115 / Your IP : 216.73.217.134 Web Server : Apache System : Linux ebs-140924 5.10.0-30-amd64 #1 SMP Debian 5.10.218-1 (2024-06-01) x86_64 User : vndaystarftp ( 67432) PHP Version : 7.3.33 Disable Function : link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/wwwroot/vndaystarftp/wwwroot/wp-content/plugins/wp-rocket/assets/js/ |
Upload File : |
jQuery( document ).ready( function( $ ){
var sent = false;
$( '.rocket-dismiss' ).on( 'click', function( e ) {
e.preventDefault();
var url = $( this ).attr( 'href' ).replace( 'admin-post', 'admin-ajax' );
$.get( url ).done( $( this ).closest( '.notice' ).hide( 'slow' ) );
});
$( '#deactivate' ).click( function() {
$( '#export_settings' ).prop( 'checked', false );
$( '#export_settings' ).hide();
$( 'label[for=export_settings]' ).hide();
});
$( '#safe_mode' ).click( function() {
$( '#export_settings' ).show();
$( 'label[for=export_settings]' ).show();
$( '#export_settings' ).prop( 'checked', true );
});
$( '#wpr-deactivation-intent-form' ).submit(function (e) {
const checked = $( '#export_settings' ).prop('checked');
if(! checked || sent) {
return true;
}
e.preventDefault();
$.ajax( {
url: rocket_option_export.rest_url_option_export,
method: 'GET',
success: function( data, textStatus, xhr ) {
const disposition = xhr.getResponseHeader('content-disposition');
const filenames = disposition.match('filename="([^"]+)"');
if(! filenames.length) {
return;
}
const filename = filenames.pop();
const url = URL.createObjectURL( new Blob( [ JSON.stringify(data, null, 2) ], {
type: "octet/stream"
}));
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
a.href = url;
a.download = filename;
a.click();
window.URL.revokeObjectURL(url);
},
complete: function () {
sent = true;
$( '#wpr-deactivation-intent-form' ).submit();
}
} );
return true;
});
} );