mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
18 lines
739 B
JavaScript
18 lines
739 B
JavaScript
document.addEventListener(
|
|
'DOMContentLoaded',
|
|
function() {
|
|
jQuery('form.checkout').on('checkout_place_order_success', function(type, data) {
|
|
if(data.payer_action && data.payer_action !== '') {
|
|
const width = screen.width / 2;
|
|
const height = screen.height / 2;
|
|
const left = (screen.width / 2) - (width / 2);
|
|
const top = (screen.height / 2) - (height / 2);
|
|
window.open(
|
|
data.payer_action,
|
|
'_blank',
|
|
'popup, width=' + width + ', height=' + height + ', top=' + top + ', left=' + left
|
|
);
|
|
}
|
|
});
|
|
}
|
|
);
|