mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
15 lines
418 B
JavaScript
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);
|
|
}
|
|
});
|