Post locks: don't check hidden checkboxes on bulk select/deselect, props dh-shredder, see #23312
git-svn-id: http://core.svn.wordpress.org/trunk@23485 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5777e5a949
commit
580b083e47
|
@ -307,7 +307,7 @@ $(document).ready( function() {
|
|||
$(this).closest( 'table' ).children( 'tbody' ).filter(':visible')
|
||||
.children().children('.check-column').find(':checkbox')
|
||||
.prop('checked', function() {
|
||||
if ( $(this).closest('tr').is(':hidden') )
|
||||
if ( $(this).is(':hidden') )
|
||||
return false;
|
||||
if ( toggle )
|
||||
return $(this).prop( 'checked' );
|
||||
|
|
Loading…
Reference in New Issue