| 1 |
jQuery(document).ready(function () { |
| 2 |
jQuery("#yaymail-notice .yaymail-nothank").on("click", function () { |
| 3 |
jQuery( "#yaymail-notice .notice-dismiss" ).trigger( "click" ); |
| 4 |
}) |
| 5 |
jQuery("#yaymail-notice .yaymail-see-addons").on("click", function () { |
| 6 |
jQuery( "#yaymail-notice .notice-dismiss" ).trigger( "click" ); |
| 7 |
}) |
| 8 |
jQuery(document).on("click", "#yaymail-notice .notice-dismiss", function(){ |
| 9 |
jQuery.ajax({ |
| 10 |
dataType: 'json', |
| 11 |
url: yaymail_notice.admin_ajax, |
| 12 |
type: "post", |
| 13 |
data: { |
| 14 |
action: "yaymail_notice", |
| 15 |
nonce: yaymail_notice.nonce, |
| 16 |
}, |
| 17 |
}) |
| 18 |
.done(function (result) { |
| 19 |
if (result.success) { |
| 20 |
console.log("success hide notice"); |
| 21 |
} else { |
| 22 |
console.log("Error", result.message); |
| 23 |
} |
| 24 |
}) |
| 25 |
.fail(function (res) { |
| 26 |
console.log(res.responseText); |
| 27 |
}); |
| 28 |
}) |
| 29 |
}) |