admin-menu.js
1 day ago
documentation.js
1 day ago
import.js
1 day ago
migrate-notice.js
1 day ago
migrate.js
1 day ago
settings.js
1 day ago
support.js
1 day ago
migrate-notice.js
13 lines
| 1 | jQuery( function ( $ ) { |
| 2 | |
| 3 | $( document ).on( 'click', '.helpdocs-migrate-notice .notice-dismiss', function () { |
| 4 | var key = $( this ).closest( '.helpdocs-migrate-notice' ).data( 'source-key' ); |
| 5 | |
| 6 | $.post( ajaxurl, { |
| 7 | action: 'helpdocs_dismiss_migrate_notice', |
| 8 | nonce: helpdocs_migrate_notice.nonce, |
| 9 | source_key: key |
| 10 | } ); |
| 11 | } ); |
| 12 | |
| 13 | } ); |