mirror of
https://gh.wpcy.net/https://github.com/pawankhated/one-click-wordpress-installer.git
synced 2026-04-22 00:39:17 +08:00
18 lines
361 B
JavaScript
18 lines
361 B
JavaScript
jQuery( document ).ready( function () {
|
|
load_preload_status();
|
|
setInterval( function () {
|
|
load_preload_status();
|
|
}, 1000 );
|
|
} );
|
|
|
|
/**
|
|
*
|
|
*/
|
|
function load_preload_status() {
|
|
jQuery.get( {
|
|
url: wpsc_preload_ajax.preload_permalink_url + '?' + Math.random(),
|
|
success: function ( response ) {
|
|
jQuery( '#preload_status' ).text( response );
|
|
},
|
|
} );
|
|
}
|