mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
document.addEventListener(
|
|
'DOMContentLoaded',
|
|
() => {
|
|
jQuery('.ppcp-delete-payment-button').click(async (event) => {
|
|
event.preventDefault();
|
|
|
|
console.log(event.target.id)
|
|
});
|
|
});
|