Skip to content

Commit

Permalink
Fix. Integrations. Handle hubspot integration in Elementor Form.
Browse files Browse the repository at this point in the history
  • Loading branch information
svfcode committed Nov 29, 2023
1 parent 3de985f commit a9e40cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/apbct-public-bundle.min.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion js/src/apbct-public--5--external-forms.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,8 @@ function isIntegratedForm(formObj) {
formAction.indexOf('mautic') !== -1 || formId.indexOf('mauticform_') !== -1 ||
formId.indexOf('ihf-contact-request-form') !== -1 ||
formAction.indexOf('crm.zoho.com') !== -1 ||
formId.indexOf('delivra-external-form') !== -1
formId.indexOf('delivra-external-form') !== -1 ||
formObj.hasAttribute("data-hs-cf-bound") // Hubspot integration in Elementor form

Check failure on line 328 in js/src/apbct-public--5--external-forms.js

View workflow job for this annotation

GitHub Actions / ESLint

Strings must use singlequote
) {
return true;
}
Expand Down
3 changes: 2 additions & 1 deletion js/src/apbct-public-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -3571,7 +3571,8 @@ function isIntegratedForm(formObj) {
formAction.indexOf('mautic') !== -1 || formId.indexOf('mauticform_') !== -1 ||
formId.indexOf('ihf-contact-request-form') !== -1 ||
formAction.indexOf('crm.zoho.com') !== -1 ||
formId.indexOf('delivra-external-form') !== -1
formId.indexOf('delivra-external-form') !== -1 ||
formObj.hasAttribute("data-hs-cf-bound") // Hubspot integration in Elementor form

Check failure on line 3575 in js/src/apbct-public-bundle.js

View workflow job for this annotation

GitHub Actions / ESLint

Strings must use singlequote
) {
return true;
}
Expand Down

0 comments on commit a9e40cf

Please sign in to comment.