Make WordPress Core

Changeset 38706


Ignore:
Timestamp:
10/03/2016 07:06:12 AM (8 years ago)
Author:
swissspidy
Message:

Plugins: Fix odd typo introduced in [38703].

even should of course be event.

See #37973.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/js/common.js

    r38703 r38706  
    428428
    429429    // This event needs to be delegated. Ticket #37973.
    430     $body.on( 'click', 'tbody .check-column :checkbox', function( even ) {
     430    $body.on( 'click', 'tbody .check-column :checkbox', function( event ) {
    431431        // Shift click to select a range of checkboxes.
    432432        if ( 'undefined' == event.shiftKey ) { return true; }
Note: See TracChangeset for help on using the changeset viewer.