Files
2026-04-28 15:13:50 +02:00

8 lines
159 B
JavaScript

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