Plugins: Fix odd typo introduced in [38703].

`even` should of course be `event`.

See #37973.
Built from https://develop.svn.wordpress.org/trunk@38706


git-svn-id: http://core.svn.wordpress.org/trunk@38649 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Pascal Birchler 2016-10-03 07:07:29 +00:00
parent 4a88d55054
commit 555d9f3025
3 changed files with 3 additions and 3 deletions

View File

@ -427,7 +427,7 @@ $document.ready( function() {
screenMeta.init();
// This event needs to be delegated. Ticket #37973.
$body.on( 'click', 'tbody .check-column :checkbox', function( even ) {
$body.on( 'click', 'tbody .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

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.7-alpha-38705';
$wp_version = '4.7-alpha-38706';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.