Current File : /pages/54/47/d0016649/home/htdocs/ob_maxi/wp-content/themes/radiate/inc/admin/js/plugin-handle.js |
/**
* Get Started button on welcome page.
*/
jQuery( document ).ready( function ( $ ) {
$( '.btn-get-started' ).click( function ( e ) {
e.preventDefault();
// Show updating gif icon and update button text.
$( this ).addClass( 'updating-message' ).text( radiateRedirectDemoPage.btn_text );
var btnData = {
action : 'import_button',
security : radiateRedirectDemoPage.nonce,
};
$.ajax( {
type : "POST",
url : ajaxurl, // URL to "wp-admin/admin-ajax.php"
data : btnData,
success :function( response ) {
var redirectUri,
dismissNonce,
extraUri = '',
btnDismiss = $( '.radiate-message-close' );
if ( btnDismiss.length ) {
dismissNonce = btnDismiss.attr( 'href' ).split( '_radiate_notice_nonce=' )[1];
extraUri = '&_radiate_notice_nonce=' + dismissNonce;
}
redirectUri = response.redirect + extraUri;
window.location.href = redirectUri;
},
error : function( xhr, ajaxOptions, thrownError ){
console.log(thrownError);
}
} );
} );
} );