19 lines
395 B
JavaScript
19 lines
395 B
JavaScript
'use strict';
|
|
|
|
(function ($) {
|
|
$(document).on('click', '.sm-close-temporary-notice, #shopmagic_two_week_rate_notice .notice-dismiss', function (event) {
|
|
event.preventDefault();
|
|
let button = this;
|
|
$.ajax(ajaxurl,
|
|
{
|
|
type: 'POST',
|
|
data: {
|
|
action: 'shopmagic_close_temporary',
|
|
}
|
|
}
|
|
).done(function() {
|
|
$(button).parents('.notice').fadeOut();
|
|
});
|
|
});
|
|
})(jQuery);
|