| 1 |
/** |
| 2 |
* @package EmbedPress |
| 3 |
* @author EmbedPress <help@embedpress.com> |
| 4 |
* @copyright Copyright (C) 2018 EmbedPress. All rights reserved. |
| 5 |
* @license GPLv2 or later |
| 6 |
* @since 1.7.0 |
| 7 |
*/ |
| 8 |
(function ($) { |
| 9 |
'use strict'; |
| 10 |
//alert(EMBEDPRESS_ADMIN_PARAMS.ajaxurl); |
| 11 |
|
| 12 |
$(document).on('click', '.embedpress-plugin-notice-dismissible.is-dismissible', function () { |
| 13 |
var data = { |
| 14 |
action: 'embedpress_notice_dismiss', |
| 15 |
security: EMBEDPRESS_ADMIN_PARAMS.nonce, |
| 16 |
}; |
| 17 |
|
| 18 |
$.post(EMBEDPRESS_ADMIN_PARAMS.ajaxurl, data, function () { |
| 19 |
|
| 20 |
}); |
| 21 |
}); |
| 22 |
})(jQuery); |
| 23 |
|