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
|
@ -235,7 +235,7 @@ window.wp = window.wp || {};
|
|||
wp.updates.updateLock = false;
|
||||
|
||||
$(document).trigger( 'wp-plugin-update-success', response );
|
||||
|
||||
|
||||
wp.updates.queueChecker();
|
||||
};
|
||||
|
||||
|
@ -373,7 +373,7 @@ window.wp = window.wp || {};
|
|||
$( 'body' ).addClass( 'modal-open' );
|
||||
$modal.show();
|
||||
|
||||
$modal.find( '#hostname' ).focus();
|
||||
$modal.find( 'input:enabled:first' ).focus();
|
||||
$modal.keydown( wp.updates.keydown );
|
||||
};
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue