8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
jQuery( function( $ ) {
|
|
"use strict";
|
|
$('body').on('change', 'input[name="payment_method"]', function() {
|
|
$('body').trigger('update_checkout');
|
|
});
|
|
});
|
|
|