golden hour
/home/phakp/public_html/wp/wp-content/themes/hestia/vendor/codeinwp/ti-about-page/js
⬆️ Go Up
Upload
File/Folder
Size
Actions
plugin-install.js
2.52 KB
Del
OK
ti_notice_manager_scripts.js
774 B
Del
OK
Edit: ti_notice_manager_scripts.js
/** * Main scripts file for the welcome notice */ /* global tiAboutNotice */ (function ($) { $(document).ready(function () { $(document).on('click', '.notice.ti-about-notice .notice-dismiss, .notice.ti-about-notice .ti-return-dashboard span', function () { jQuery.ajax({ async: true, type: 'POST', data: { action: 'ti_about_dismiss_welcome_notice', nonce: tiAboutNotice.dismissNonce }, url: tiAboutNotice.ajaxurl, success: function ( response ) { console.log(response); $(' .ti-about-notice ').fadeOut(); } }); }); }); })(jQuery);
Save