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