Processes Masterpass. This component is currently in beta and is subject to change.
- Source:
Members
(static) VERSION :string
The current version of the SDK, i.e. 3.19.0
.
- Source:
Methods
(static) create(options, callbackopt) → {Promise|void}
Parameters:
Name | Type | Attributes | Description | ||||||
---|---|---|---|---|---|---|---|---|---|
options |
object | Creation options: Properties
|
|||||||
callback |
callback |
<optional> |
The second argument, |
- Source:
Example
braintree.masterpass.create({
client: clientInstance
}, function (createErr, masterpassInstance) {
if (createErr) {
if (createErr.code === 'MASTERPASS_BROWSER_NOT_SUPPORTED') {
console.error('This browser is not supported.');
} else {
console.error('Error!', createErr);
}
return;
}
});
(static) isSupported() → {Boolean}
Returns true if Masterpass supports this browser.
- Source:
Example
if (braintree.masterpass.isSupported()) {
// Add Masterpass button to the page
} else {
// Hide Masterpass payment option
}