balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

notification.js (346B)


      1 ( function( $, i18n ) {
      2 	'use strict';
      3 
      4 	function dismissNotification() {
      5 		$( '#meta-box-notification' ).on( 'click', '.notice-dismiss', function( event ) {
      6 			event.preventDefault();
      7 
      8 			$.post( ajaxurl, {
      9 				action: 'mb_dismiss_notification',
     10 				nonce: i18n.nonce
     11 			} );
     12 		} );
     13 	}
     14 
     15 	$( dismissNotification );
     16 } )( jQuery, MBNotification );