Skip to content
Snippets Groups Projects
Commit 2ef933d7 authored by mattwire's avatar mattwire
Browse files

Make sure we reset submitted flag if we are not able to submit the form

parent c090ebd4
No related branches found
No related tags found
1 merge request!1146.4.1
...@@ -441,13 +441,13 @@ CRM.$(function($) { ...@@ -441,13 +441,13 @@ CRM.$(function($) {
if (($(form).valid() === false) || $(form).data('crmBillingFormValid') === false) { if (($(form).valid() === false) || $(form).data('crmBillingFormValid') === false) {
debugging('Form not valid'); debugging('Form not valid');
$('div#card-errors').hide(); $('div#card-errors').hide();
form.dataset.submitted = 'false';
swalFire({ swalFire({
icon: 'error', icon: 'error',
text: ts('Please check and fill in all required fields!'), text: ts('Please check and fill in all required fields!'),
title: '', title: '',
}, '#crm-container', true); }, '#crm-container', true);
triggerEvent('crmBillingFormNotValid'); triggerEvent('crmBillingFormNotValid');
form.dataset.submitted = 'false';
return false; return false;
} }
...@@ -463,6 +463,7 @@ CRM.$(function($) { ...@@ -463,6 +463,7 @@ CRM.$(function($) {
title: cardError, title: cardError,
}, '#card-element', true); }, '#card-element', true);
triggerEvent('crmBillingFormNotValid'); triggerEvent('crmBillingFormNotValid');
form.dataset.submitted = 'false';
return false; return false;
} }
...@@ -477,6 +478,7 @@ CRM.$(function($) { ...@@ -477,6 +478,7 @@ CRM.$(function($) {
title: cardError, title: cardError,
}, '#card-element', true); }, '#card-element', true);
triggerEvent('crmBillingFormNotValid'); triggerEvent('crmBillingFormNotValid');
form.dataset.submitted = 'false';
return false; return false;
} }
...@@ -489,6 +491,7 @@ CRM.$(function($) { ...@@ -489,6 +491,7 @@ CRM.$(function($) {
title: ts('Please complete the reCaptcha'), title: ts('Please complete the reCaptcha'),
}, '.recaptcha-section', true); }, '.recaptcha-section', true);
triggerEvent('crmBillingFormNotValid'); triggerEvent('crmBillingFormNotValid');
form.dataset.submitted = 'false';
return false; return false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment