• File: notification.js
  • Full Path: /home/chassiw/www/wp-content/plugins/meta-box/js/notification.js
  • File size: 346 bytes
  • MIME-type: text/plain
  • Charset: utf-8
( function( $, i18n ) {
	'use strict';

	function dismissNotification() {
		$( '#meta-box-notification' ).on( 'click', '.notice-dismiss', function( event ) {
			event.preventDefault();

			$.post( ajaxurl, {
				action: 'mb_dismiss_notification',
				nonce: i18n.nonce
			} );
		} );
	}

	$( dismissNotification );
} )( jQuery, MBNotification );