List Tables: After [38703], [38706], and [40118], adjust the jQuery selector to make the selection of a range of checkboxes work again.
Unprop afercia. Fixes #40056. Built from https://develop.svn.wordpress.org/trunk@40268 git-svn-id: http://core.svn.wordpress.org/trunk@40187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d675e30e51
commit
6944c8f3a6
|
@ -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 > tr > .check-column :checkbox', function( event ) {
|
||||
// Shift click to select a range of checkboxes.
|
||||
if ( 'undefined' == event.shiftKey ) { return true; }
|
||||
if ( event.shiftKey ) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.8-alpha-40267';
|
||||
$wp_version = '4.8-alpha-40268';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue