mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
20 lines
525 B
JavaScript
20 lines
525 B
JavaScript
export const PaymentMethods = {
|
|
PAYPAL: 'ppcp-gateway',
|
|
CARDS: 'ppcp-credit-card-gateway',
|
|
};
|
|
|
|
export const ORDER_BUTTON_SELECTOR = '#place_order';
|
|
|
|
export const getCurrentPaymentMethod = () => {
|
|
const el = document.querySelector('input[name="payment_method"]:checked');
|
|
if (!el) {
|
|
return null;
|
|
}
|
|
|
|
return el.value;
|
|
};
|
|
|
|
export const isSavedCardSelected = () => {
|
|
const savedCardList = document.querySelector('#saved-credit-card');
|
|
return savedCardList && savedCardList.value !== '';
|
|
};
|