Last active
July 1, 2019 12:43
-
-
Save indreklasn/a6d67744ca4d754604bb00f2841cd326 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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