mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-18 04:25:07 +00:00
Don't try to focus disabled input fields in the request filesystem credentials form.
fixes #32064. Built from https://develop.svn.wordpress.org/trunk@32267 git-svn-id: http://core.svn.wordpress.org/trunk@32238 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
89e45feb4c
commit
aea00880f1
@ -373,7 +373,7 @@ window.wp = window.wp || {};
|
|||||||
$( 'body' ).addClass( 'modal-open' );
|
$( 'body' ).addClass( 'modal-open' );
|
||||||
$modal.show();
|
$modal.show();
|
||||||
|
|
||||||
$modal.find( '#hostname' ).focus();
|
$modal.find( 'input:enabled:first' ).focus();
|
||||||
$modal.keydown( wp.updates.keydown );
|
$modal.keydown( wp.updates.keydown );
|
||||||
};
|
};
|
||||||
|
|
||||||
|
2
wp-admin/js/updates.min.js
vendored
2
wp-admin/js/updates.min.js
vendored
File diff suppressed because one or more lines are too long
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-RC3-32266';
|
$wp_version = '4.2-RC3-32267';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user