%PDF- %PDF-
| Direktori : /var/www/projetos/french.ongrace.com/wp-content/themes/flash/inc/admin/js/ |
| Current File : /var/www/projetos/french.ongrace.com/wp-content/themes/flash/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( flashRedirectDemoPage.btn_text );
var btnData = {
action : 'import_button',
security : flashRedirectDemoPage.nonce,
};
$.ajax( {
type : "POST",
url : ajaxurl, // URL to "wp-admin/admin-ajax.php"
data : btnData,
success :function( response ) {
var redirectUri,
dismissNonce,
extraUri = '',
btnDismiss = $( '.flash-message-close' );
if ( btnDismiss.length ) {
dismissNonce = btnDismiss.attr( 'href' ).split( '_flash_notice_nonce=' )[1];
extraUri = '&_flash_notice_nonce=' + dismissNonce;
}
redirectUri = response.redirect + extraUri;
window.location.href = redirectUri;
},
error : function( xhr, ajaxOptions, thrownError ){
console.log(thrownError);
}
} );
} );
} );