Skip to content

Instantly share code, notes, and snippets.

@bluepnume
Created December 11, 2018 18:29
Show Gist options
  • Save bluepnume/9bf3f73caa5974b7ef877b6977ea18aa to your computer and use it in GitHub Desktop.
Save bluepnume/9bf3f73caa5974b7ef877b6977ea18aa to your computer and use it in GitHub Desktop.
const SESSION_ID = 'xyz123';
paypal.Button.render() {
// Called on click of the button
payment() {
console.log('The session id is:', SESSION_ID);
},
// Called after buyer approves the payment
onAuthorize() {
console.log('The session id is still:', SESSION_ID);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment