diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-06-18 23:59:04 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2018-06-18 23:59:04 +0200 |
commit | ea9ce72708e1fd995936ce6737acb187c6f86182 (patch) | |
tree | 605e516f9f45285fcb3aa47d52b160a821699e67 /website/resources/js | |
parent | f241ef8c309b90faacabe66431b9deaebfd7087a (diff) | |
download | lombok-ea9ce72708e1fd995936ce6737acb187c6f86182.tar.gz lombok-ea9ce72708e1fd995936ce6737acb187c6f86182.tar.bz2 lombok-ea9ce72708e1fd995936ce6737acb187c6f86182.zip |
[website] lombok licenses for international customers now via stripe instead of payoneer. Also, typos.
Diffstat (limited to 'website/resources/js')
-rw-r--r-- | website/resources/js/order-license.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/resources/js/order-license.js b/website/resources/js/order-license.js index b2842456..21550f34 100644 --- a/website/resources/js/order-license.js +++ b/website/resources/js/order-license.js @@ -15,7 +15,7 @@ $("#locationType_eu").toggle(locationType === "eu"); $("#locationType_other").toggle(locationType === "other"); $("#paymentMethod_iban").toggle(locationType === "eu"); - if ($("#paymentMethod_iban input").is(":checked") && locationType !== "eu") $("#paymentMethod_payoneer input").prop("checked", true); + if ($("#paymentMethod_iban input").is(":checked") && locationType !== "eu") $("#paymentMethod_stripe input").prop("checked", true); if ($("#paymentMethod_intl input").is(":checked") && locationType === "eu") $("#paymentMethod_iban input").prop("checked", true); $("#paymentMethod_intl").toggle(locationType !== "eu"); } |