PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.12
Smart Grid-Layout Design for Contact Form 7 v4.12
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / assets / cf7-admin-table / admin / js / cf7-post-table.js

cf7-post-table.js in Smart Grid-Layout Design for Contact Form 7 4.12, at assets/cf7-admin-table/admin/js/cf7-post-table.js

12 lines 485 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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