MediaWiki:DonationForm.js: Difference between revisions
Content deleted Content added
m convert spacing to tabs |
replace deprecated mw.Uri with native URL - phab:T374314 |
||
Line 255:
{}
)
};
// currencyDisplay: 'narrowSymbol' fixes some issues like en-CO showing the ISO code
Line 864:
donationForm.finalStep = function( params ) {
var
// Skip form chooser for Apple Pay / Google Pay
if ( params.payment_method === 'apple' || params.payment_method === 'google' ) {
}
// Skip form chooser for Venmo
if ( params.payment_method === 'venmo' ) {
}
Line 888:
}
url.searchParams.set( key, params[key] );
}
if ( window.top !== window.self ) {
// In a frame, open payments in a new tab
window.open(
} else {
window.location.href =
}
};
|