Skip to content
Snippets Groups Projects
Commit 8d9cfd73 authored by Denis Ledoux's avatar Denis Ledoux
Browse files

[FIX] website_sale: retrocompatible patch for a6379e2e

The view *_acquirer_button being  being in noupdate mode, this is possible that the view isn't updated during the migration
parent a9907aac
Branches
Tags
No related merge requests found
......@@ -10,7 +10,7 @@ $(document).ready(function () {
.find("input[name='acquirer']:checked").click();
// When clicking on payment button: create the tx using json then continue to the acquirer
$payment.on("click", 'button[type="submit"]', function (ev) {
$payment.on("click", 'button[type="submit"],button[name="submit"]', function (ev) {
ev.preventDefault();
ev.stopPropagation();
var $form = $(ev.currentTarget).parents('form');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment