mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-13 19:11:41 +01:00
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:
parent
4a88d55054
commit
555d9f3025
@ -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 ) {
|
||||
|
2
wp-admin/js/common.min.js
vendored
2
wp-admin/js/common.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user