Ticket #37973: 37973.diff
File 37973.diff, 630 bytes (added by , 8 years ago) |
---|
-
src/wp-admin/js/common.js
456 456 return true; 457 457 }); 458 458 459 $('thead, tfoot').find('.check-column :checkbox').on( 'click.wp-toggle-checkboxes', function( event ) { 459 // This event needs to be delegated. Ticket #37973. 460 $body.on( 'click.wp-toggle-checkboxes', 'thead .check-column :checkbox, tfoot .check-column :checkbox', function( event ) { 460 461 var $this = $(this), 461 462 $table = $this.closest( 'table' ), 462 463 controlChecked = $this.prop('checked'),