woocommerce-paypal-payments/modules/ppcp-wc-gateway/resources/js/oxxo.js

16 lines
418 B
JavaScript
Raw Normal View History

2022-07-12 14:44:08 +02:00
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);
}
});