Pristine upstream, unpacked from the official wordpress.org tarball. https://wordpress.org/wordpress-7.1.1.tar.gz sha1 2a9d68474e8703aa3a66f80427b325e0941b6a1e (published by wordpress.org) sha256 3996fee13448ef12e07e9f0c77db2f655ffa1b7cde71c80a4965d3bf1fb956b3 This branch carries nothing but upstream releases, one commit each, and is never edited. It is the other side of the git-subtree merge that brings security releases into SiriusPress/wordpress/ — see SiriusPress/docs/upstream-merges.md.
36 lines
890 B
JavaScript
36 lines
890 B
JavaScript
/**
|
|
* @output wp-admin/js/language-chooser.js
|
|
*/
|
|
|
|
jQuery( function($) {
|
|
/*
|
|
* Set the correct translation to the continue button and show a spinner
|
|
* when downloading a language.
|
|
*/
|
|
var select = $( '#language' ),
|
|
submit = $( '#language-continue' );
|
|
|
|
if ( ! $( 'body' ).hasClass( 'language-chooser' ) ) {
|
|
return;
|
|
}
|
|
|
|
select.trigger( 'focus' ).on( 'change', function() {
|
|
/*
|
|
* When a language is selected, set matching translation to continue button
|
|
* and attach the language attribute.
|
|
*/
|
|
var option = select.children( 'option:selected' );
|
|
submit.attr({
|
|
value: option.data( 'continue' ),
|
|
lang: option.attr( 'lang' )
|
|
});
|
|
});
|
|
|
|
$( 'form' ).on( 'submit', function() {
|
|
// Show spinner for languages that need to be downloaded.
|
|
if ( ! select.children( 'option:selected' ).data( 'installed' ) ) {
|
|
$( this ).find( '.step .spinner' ).css( 'visibility', 'visible' );
|
|
}
|
|
});
|
|
|
|
});
|