mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-13 12:52:56 +00:00
9 lines
300 B
JavaScript
9 lines
300 B
JavaScript
jQuery(document).ready(function($){
|
|
|
|
$('body.post-type-shop_order #post').submit(function(){
|
|
if('wcs_retry_renewal_payment' == $( "body.post-type-shop_order select[name='wc_order_action']" ).val()) {
|
|
return confirm(wcs_admin_order_meta_boxes.retry_renewal_payment_action_warning);
|
|
}
|
|
});
|
|
});
|