MediaWiki:DonationForm.js: Difference between revisions

Content deleted Content added
fix use of frb
remove variant=redirect code - handled on payments now
Line 587:
form.gateway.value = 'adyen';
form.ffname.value = 'adyen';
}
 
/* Temporary redirect variant for 3DS issues - https://phabricator.wikimedia.org/T219445 */
var country = form.country.value;
if ( paymentMethod === 'cc' ) {
if ( country === 'NO' || country === 'SE' || country === 'PL' ) {
form.variant.value = 'redirect';
}
}