MediaWiki:DonationFormSandbox.js: Difference between revisions
Content deleted Content added
No edit summary |
replace deprecated mw.Uri with native URL - phab:T374314 |
||
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, value );
}
if ( window.top !== window.self ) {
// In a frame, open payments in a new tab
window.open(
} else {
window.location.href =
}
};
|