Plugins: After [38703], adjust the selector for checkbox selection to account for nested tables.
Props afercia, swissspidy, reldev. Fixes #39739. git-svn-id: https://develop.svn.wordpress.org/trunk@40118 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e5ce2174fc
commit
7d4cabb131
|
@ -418,7 +418,7 @@ $document.ready( function() {
|
|||
screenMeta.init();
|
||||
|
||||
// This event needs to be delegated. Ticket #37973.
|
||||
$body.on( 'click', 'tbody .check-column :checkbox', function( event ) {
|
||||
$body.on( 'click', 'tbody > .check-column :checkbox', function( event ) {
|
||||
// Shift click to select a range of checkboxes.
|
||||
if ( 'undefined' == event.shiftKey ) { return true; }
|
||||
if ( event.shiftKey ) {
|
||||
|
|
Loading…
Reference in New Issue