Skip to content

Commit

Permalink
php version 7.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord Vollkorn committed Aug 27, 2020
1 parent 104e462 commit 7a92795
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
],
"require": {
"php": "~7.1.0|~7.2.0|~7.3.0|~7.4.3",
"php": "~7.2.0|~7.3.0|~7.4.3",
"paypal/rest-api-sdk-php": "^1.6",
"magento/module-paypal": "100.3.*"
},
Expand Down
6 changes: 5 additions & 1 deletion view/frontend/web/js/view/payment/method-renderer/payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ define(
"additional_data": null
};
},
placePPPOrder: function (data, event) {
placePPPOrder: function (data, event) {alert("TEST");
var checkedRequiredCA = $('.checkout-agreements.fieldset > .checkout-agreement.required > input.required-entry:checked');
if (checkedRequiredCA.length) {
$('.checkout-agreements.fieldset > .checkout-agreement.required > input.required-entry').prop('checked', true);
}
if (event) {
event.preventDefault();
}
Expand Down

0 comments on commit 7a92795

Please sign in to comment.