duplicate-field.js
2 years ago
email-reports.js
2 years ago
notices.js
2 years ago
scroll-to-top.js
2 years ago
sticky-sidebar.js
2 years ago
support.js
2 years ago
user-roles.js
1 year ago
notices.js
21 lines
| 1 | const $ = jQuery; |
| 2 | |
| 3 | const Notices = { |
| 4 | setup() { |
| 5 | $('#dismiss-notice').on('click', function() { |
| 6 | const data = { |
| 7 | ...iawpActions.confirm_cache_cleared |
| 8 | }; |
| 9 | |
| 10 | $('.iawp-notice.iawp-warning').hide(); |
| 11 | |
| 12 | jQuery.post(ajaxurl, data, (response) => { |
| 13 | |
| 14 | }).fail(() => { |
| 15 | |
| 16 | }); |
| 17 | }); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | export { Notices }; |