Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Last active July 1, 2019 12:43
Show Gist options
  • Save indreklasn/a6d67744ca4d754604bb00f2841cd326 to your computer and use it in GitHub Desktop.
Save indreklasn/a6d67744ca4d754604bb00f2841cd326 to your computer and use it in GitHub Desktop.
buyButton.addEventListener('click', () => {
const request = new PaymentRequest(
buildSupportedPaymentMethodData(),
buildShoppingCartDetails()
);
request.show().then(paymentResponse => {
console.log(paymentResponse)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment