Make WordPress Core

Ticket #21516: 21516.diff

File 21516.diff, 851 bytes (added by mitchoyoshitaka, 12 years ago)
  • wp-admin/js/common.dev.js

     
    285285
    286286                return true;
    287287        });
     288       
     289        $('tbody .check-column').click( function(e) {
     290                var checkbox = $(this).find(':checkbox');
     291                checkbox.prop('checked', !checkbox.prop('checked'));
     292        } );
    288293
    289294        $('thead, tfoot').find('.check-column :checkbox').click( function(e) {
    290295                var c = $(this).prop('checked'),
  • wp-admin/css/wp-admin.dev.css

     
    586586        width: 2.2em;
    587587        padding: 11px 0 0;
    588588        vertical-align: top;
     589        cursor: pointer;
    589590}
    590591
    591592.widefat tbody th.check-column {