( function( jQuery ){
jQuery( document ).ready( function(){
jQuery( '.transport-solutions-btn-get-started' ).on( 'click', function( e ) {
e.preventDefault();
jQuery( this ).html( 'Processing.. Please wait' ).addClass( 'updating-message' );
jQuery.post( transport_solutions_ajax_object.ajax_url, { 'action' : 'install_act_plugin' }, function( response ){
location.href = 'customize.php?transport_solutions_notice=dismiss-get-started';
} );
} );
} );
jQuery( document ).on( 'click', '.notice-get-started-class .notice-dismiss', function () {
// Read the "data-notice" information to track which notice
// is being dismissed and send it via AJAX
var type = jQuery( this ).closest( '.notice-get-started-class' ).data( 'notice' );
// Make an AJAX call
jQuery.ajax( ajaxurl,
{
type: 'POST',
data: {
action: 'transport_solutions_dismissed_notice_handler',
type: type,
}
} );
} );
}( jQuery ) )