blocks
4 years ago
admin.js
2 years ago
asset_manager_core_js.js
2 years ago
opt-out-configurator.directive.html
5 years ago
opt-out-configurator.directive.js
5 years ago
optout.js
5 years ago
admin.js
12 lines
| 1 | jQuery(document).on( 'click', '#matomo-referral .notice-dismiss', function () { |
| 2 | var data = {'action': 'matomo_referral_dismiss_admin_notice'}; |
| 3 | jQuery.post( ajaxurl, data ); |
| 4 | });jQuery(document).on( 'click', '#matomo-referral .matomo-dismiss-forever', function () { |
| 5 | var data = {'action': 'matomo_referral_dismiss_admin_notice', forever: '1'}; |
| 6 | jQuery.post( ajaxurl, data ); |
| 7 | }); |
| 8 | jQuery(document).on( 'click', '#matomo-systemreporterrors .notice-dismiss', function () { |
| 9 | var data = {'action': 'matomo_system_report_error_dismissed'}; |
| 10 | jQuery.post( ajaxurl, data ); |
| 11 | }); |
| 12 |