芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/timucuy.com/wp-content/themes/hestia/assets/js/admin/customizer-notices-handler.js
/* global dismissNotices */ /** * Handle notice dismiss in customizer. */ jQuery( function ( $ ) { $( document ).on( 'click', '.hestia-notice .notice-dismiss', function () { var control_id = $( this ).closest('li').attr( 'id' ).replace( 'accordion-section-', '' ); $.ajax( { url: dismissNotices.ajaxurl, type: 'POST', data: { action: 'dismissed_notice_handler', control: control_id }, success: function () { $( '#accordion-section-' + control_id ).fadeOut( 300, function () { $( this ).remove(); } ); } } ); } ); } );