mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Administration: Restore missing spinner when installing a new language.
Fixes #40478. Built from https://develop.svn.wordpress.org/trunk@40579 git-svn-id: http://core.svn.wordpress.org/trunk@40449 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fe96a729a0
commit
98402b7c15
@ -1050,7 +1050,7 @@ jQuery(document).ready( function($) {
|
|||||||
// Don't show a spinner for English and installed languages,
|
// Don't show a spinner for English and installed languages,
|
||||||
// as there is nothing to download.
|
// as there is nothing to download.
|
||||||
if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
|
if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
|
||||||
$( '#submit', this ).after( '<span class="spinner language-install-spinner" />' );
|
$( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -78,7 +78,7 @@ function options_general_add_js() {
|
|||||||
// Don't show a spinner for English and installed languages,
|
// Don't show a spinner for English and installed languages,
|
||||||
// as there is nothing to download.
|
// as there is nothing to download.
|
||||||
if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
|
if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) {
|
||||||
$( '#submit', this ).after( '<span class="spinner language-install-spinner" />' );
|
$( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-40578';
|
$wp_version = '4.8-alpha-40579';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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…
Reference in New Issue
Block a user