| 1 |
(function($) { |
| 2 |
$(document).ready(function(){ |
| 3 |
$('table.wp-list-table').on('click','.editinline',function(e){ |
| 4 |
const $post = $(e.target).closest('tr'), |
| 5 |
post_id = $post.attr('id').replace('post-',''), |
| 6 |
$edit = $('#edit-'+post_id, $post.parent()); |
| 7 |
$('fieldset.inline-edit-col-left',$edit).first().children('.inline-edit-col').children(':not(label)').hide(); |
| 8 |
$('fieldset.inline-edit-col-right',$edit).first().children().hide(); |
| 9 |
}) |
| 10 |
}) |
| 11 |
})(jQuery); |
| 12 |
|