woocommerce-paypal-payments/modules/ppcp-wc-gateway/resources/js/oxxo.js
2022-07-12 14:44:08 +02:00

15 lines
418 B
JavaScript

window.addEventListener('load', function() {
const oxxoButton = document.getElementById('ppcp-oxxo-payer-action');
if(oxxoButton) {
oxxoButton.addEventListener('click', (event) => {
event.preventDefault();
window.open(
oxxoButton.href,
'_blank',
'popup'
);
});
window.open(oxxoButton.href);
}
});