| 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 | }); |