Ticket #21516: 21516.2.diff

File 21516.2.diff, 827 bytes (added by lessbloat, 7 months ago)
  • wp-admin/js/common.js

     
    292292 
    293293                return true; 
    294294        }); 
     295         
     296        $('table .check-column').click( function(e) { 
     297                var checkbox = $(this).find(':checkbox'); 
     298                checkbox.prop('checked', !checkbox.prop('checked')); 
     299        } ); 
    295300 
    296301        $('thead, tfoot').find('.check-column :checkbox').click( function(e) { 
    297302                var c = $(this).prop('checked'), 
  • wp-admin/css/wp-admin.css

     
    595595        width: 2.2em; 
    596596        padding: 6px 0 25px; 
    597597        vertical-align: top; 
     598        cursor: pointer; 
    598599} 
    599600 
    600601.widefat.media .check-column {