woocommerce-paypal-payments/modules/ppcp-axo/resources/js/boot.js

18 lines
344 B
JavaScript
Raw Normal View History

2024-02-09 17:49:45 +00:00
import AxoManager from "./AxoManager";
2024-02-08 14:37:56 +00:00
const bootstrap = () => {
2024-02-09 17:49:45 +00:00
const axo = new AxoManager();
2024-02-08 14:37:56 +00:00
}
document.addEventListener(
'DOMContentLoaded',
() => {
if (!typeof (PayPalCommerceGateway)) {
console.error('PayPal button could not be configured.');
return;
}
bootstrap();
},
);