Skip to content

Commit

Permalink
Merge pull request #485 from Invertus/MOL-527/checkout-button-fix
Browse files Browse the repository at this point in the history
MOL-527 checkout disabled button fix
  • Loading branch information
margud authored Dec 6, 2021
2 parents 4011134 + b566ee2 commit 6fb5fb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
+ Removed mail switch for awaiting and open order statuses.
+ Fixed issue where creating mollie order from back office had issues
+ Fixed issue where on some payment methods refund status would not be changed after refund webhook is called
+ Fixed issue where after wrong credit card input the button got disabled.

## Changes in release 4.4.2 ##
+ Fixed payment methods translations using API in checkout
Expand Down
3 changes: 3 additions & 0 deletions views/js/front/mollie_iframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ $(document).ready(function () {
$mollieCardToken.val(token.token);
isResubmit = true;
$form[0].submit();
return;
});

$('#payment-confirmation').find('button[type=submit]').prop("disabled", false);
});
}

Expand Down

0 comments on commit 6fb5fb8

Please sign in to comment.