MediaWiki:Common.js: Difference between revisions
Content deleted Content added
replace deprecated mw.Uri with native URL (country selector) - phab:T374314 |
countrySelect DE/CH should redirect to chapter sites |
||
Line 71:
document.getElementById('country-select-go').addEventListener( 'click', function(e) {
if ( countrySelect.value ) {
// Chapter countries, use the built-in donatewiki redirects
if ( countrySelect.value === 'DE' ) {
window.location = 'https://donate.wikimedia.org/?country=DE';
}
if ( countrySelect.value === 'CH ' ) {
window.location = 'https://donate.wikimedia.org/?country=CH';
}
var url = new URL( location.href );
url.searchParams.set( 'country', countrySelect.value );
|