| 1 |
/* global jQuery, ajaxurl, watVars */ |
| 2 |
|
| 3 |
( function ( wp, $ ) { |
| 4 |
const wooTermsAdmin = { |
| 5 |
cache() { |
| 6 |
this.vars = {}; |
| 7 |
this.vars.upsell = '.notice-info.woocommerce-message.is-dismissible .notice-dismiss'; |
| 8 |
}, |
| 9 |
|
| 10 |
init() { |
| 11 |
this.cache(); |
| 12 |
$( document.body ).on( 'click', this.vars.upsell, this.handleOnDismiss ); |
| 13 |
}, |
| 14 |
|
| 15 |
handleOnDismiss() { |
| 16 |
$.ajax( { |
| 17 |
type: 'POST', |
| 18 |
url: ajaxurl, |
| 19 |
data: { |
| 20 |
_ajax_nonce: watVars.dismiss_nonce, |
| 21 |
action: 'woo_additional_terms_dismiss_upsell', |
| 22 |
}, |
| 23 |
dataType: 'json', |
| 24 |
} ); |
| 25 |
}, |
| 26 |
}; |
| 27 |
|
| 28 |
wooTermsAdmin.init(); |
| 29 |
} )( window.wp, jQuery ); |
| 30 |
|