gutenberg
3 years ago
gutenbergComponents
3 years ago
autoupdate_banner.js
3 years ago
banner_main.js
3 years ago
circle-progress.js
3 years ago
datatables.min.js
4 years ago
jquery.multi-select.js
4 years ago
jquery.tagsinput.min.js
4 years ago
referral_program.js
3 years ago
sidebar-plugin.js
3 years ago
speed.js
3 years ago
two_admin.js
1 year ago
two_admin_bar.js
4 years ago
two_bf_countdown.js
3 years ago
two_deactivate_plugin.js
4 years ago
two_elementor_editor.js
2 years ago
two_preview.js
3 years ago
two_update_white_label.js
1 year ago
two_white_label.js
2 years ago
two_update_white_label.js
10 lines
| 1 | jQuery(document).ready(function($) { |
| 2 | // Remove the link with class 'open-plugin-details-modal' |
| 3 | $('.update-message a.open-plugin-details-modal').remove(); |
| 4 | |
| 5 | // Remove the " or " text node (note the spaces) |
| 6 | $('.update-message p').contents().filter(function() { |
| 7 | return this.nodeType === 3 && this.nodeValue.trim() === 'or'; |
| 8 | }).remove(); |
| 9 | }); |
| 10 |