Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. StripeCheckout.configure({
  2. key: stripeKey,
  3. image: "/img/core/logo-stripe.png",
  4. alipay: "auto",
  5. locale: langs[0],
  6. token: function (token) {
  7. // ...
  8. }
  9. }).open({
  10. name: name,
  11. description: (count == 1 ? ("1 " + type) : (count + " " + types)) + ": $" + amount,
  12. amount: amount * 100,
  13. allowRememberMe: false,
  14. zipCode: true,
  15. address: true,
  16. email: email,
  17. panelLabel: langs[0] == "en" ? "Purchase: " : null
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement