Fix onboarding callback

Looks like the global function were not available for the PayPal SDK since #844
This commit is contained in:
Alex P 2022-09-26 15:41:24 +03:00
parent e27efcd363
commit c3b2472389

View file

@ -127,13 +127,14 @@ const ppcp_onboarding = {
},
};
function ppcp_onboarding_sandboxCallback(...args) {
return ppcp_onboarding.loginSeller('sandbox', ...args);
}
function ppcp_onboarding_productionCallback(...args) {
return ppcp_onboarding.loginSeller('production', ...args);
}
window.ppcp_onboarding_sandboxCallback = function(...args) {
return ppcp_onboarding.loginSeller('sandbox', ...args);
};
window.ppcp_onboarding_productionCallback = function(...args) {
return ppcp_onboarding.loginSeller('production', ...args);
};
(() => {
const productionCredentialElementsSelectors = [