Created
August 1, 2018 03:21
-
-
Save crmpicco/c4e5fe07d1e1a6f3b02956a1c441d1ca to your computer and use it in GitHub Desktop.
Braintree PayPal API v3 hidePrettyPayPal
This file contains 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
'use strict'; | |
var paypalButton = document.getElementById('paypal'); | |
var paypalEmail = document.getElementById('bt-pp-email'); | |
var paypalCancel = document.getElementById('braintree-paypal-loggedin'); | |
function displayPrettyPayPal(payload) { | |
paypalEmail.innerHTML = payload.details.email; | |
$('#braintree-paypal-loggedin').fadeIn('slow'); | |
} | |
function hidePrettyPayPal() { | |
$('#braintree-paypal-loggedin').fadeOut('fast', function() { | |
paypalEmail.innerHTML = ''; | |
paypalButton.removeAttribute('disabled'); | |
}); | |
} | |
paypalCancel.addEventListener('click', hidePrettyPayPal); | |
braintree.client.create({ | |
authorization: 'sandbox_g42y39zw_348pk9cgf3bgyw2b' | |
}, function(clientErr, clientInstance) { | |
braintree.paypal.create({ | |
client: clientInstance | |
}, function(paypalErr, paypalInstance) { | |
paypalButton.removeAttribute('disabled'); | |
paypalButton.addEventListener('click', function(event) { | |
paypalButton.setAttribute('disabled', true); | |
paypalInstance.tokenize({ | |
flow: 'vault' | |
}, function(tokenizeErr, payload) { | |
// Stop if there was an error. | |
if (tokenizeErr) { | |
paypalButton.removeAttribute('disabled'); | |
return; | |
} | |
displayPrettyPayPal(payload); | |
}); | |
}, false); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment