Your IP : 216.73.216.162


Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/
Upload File :
Current File : /home/x/b/o/xbodynamge/namtation/wp-content/customizer-notices-handler.js.tar

home/xbodynamge/www/wp-content/themes/hestia/assets/js/admin/customizer-notices-handler.js000064400000001067151136756060026160 0ustar00/* global dismissNotices */

/**
 * Handle notice dismiss in customizer.
 */
jQuery( function ( $ ) {
	$( document ).on( 'click', '.hestia-notice .notice-dismiss', function () {
		var control_id = $( this ).closest('li').attr( 'id' ).replace( 'accordion-section-', '' );
		$.ajax( {
			url: dismissNotices.ajaxurl,
			type: 'POST',
			data: {
				action: 'dismissed_notice_handler',
				control: control_id
			},
			success: function () {
				$( '#accordion-section-' + control_id ).fadeOut( 300, function () {
					$( this ).remove();
				} );
			}
		} );
	} );
} );