Updates: Show the Authentication key settings after selecting the SSH transport in both the modal, and also on the plugin/theme updates screen.
Props afercia. Fixes #39057 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@39657 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
85ad040c97
commit
16e8d82c89
@ -1516,11 +1516,9 @@
|
||||
* @param {string} message Error message.
|
||||
*/
|
||||
wp.updates.showErrorInCredentialsForm = function( message ) {
|
||||
var $modal = $( '#request-filesystem-credentials-form' );
|
||||
|
||||
// Remove any existing error.
|
||||
$modal.find( '.notice' ).remove();
|
||||
$modal.find( '#request-filesystem-credentials-title' ).after( '<div class="notice notice-alt notice-error"><p>' + message + '</p></div>' );
|
||||
$filesystemForm.find( '.notice' ).remove();
|
||||
$filesystemForm.find( '#request-filesystem-credentials-title' ).after( '<div class="notice notice-alt notice-error"><p>' + message + '</p></div>' );
|
||||
};
|
||||
|
||||
/**
|
||||
@ -1670,6 +1668,7 @@
|
||||
$( function() {
|
||||
var $pluginFilter = $( '#plugin-filter' ),
|
||||
$bulkActionForm = $( '#bulk-action-form' ),
|
||||
$filesystemForm = $( '#request-filesystem-credentials-form' ),
|
||||
$filesystemModal = $( '#request-filesystem-credentials-dialog' ),
|
||||
$pluginSearch = $( '.plugins-php .wp-filter-search' ),
|
||||
$pluginInstallSearch = $( '.plugin-install-php .wp-filter-search' );
|
||||
@ -1725,7 +1724,7 @@
|
||||
*
|
||||
* @since 4.2.0
|
||||
*/
|
||||
$filesystemModal.on( 'change', 'input[name="connection_type"]', function() {
|
||||
$filesystemForm.on( 'change', 'input[name="connection_type"]', function() {
|
||||
$( '#ssh-keys' ).toggleClass( 'hidden', ( 'ssh' !== $( this ).val() ) );
|
||||
} ).change();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user