mod-build 3.4.35 → 3.4.36--beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/scripts/qs-form.js +3 -1
package/package.json
CHANGED
package/src/scripts/qs-form.js
CHANGED
|
@@ -363,7 +363,7 @@ modForm.getDefaultQuadByDomain = function() {
|
|
|
363
363
|
};
|
|
364
364
|
|
|
365
365
|
if (page === 'quotes.improvementcenter.com') {
|
|
366
|
-
const
|
|
366
|
+
const service = window.location.pathname.replace(/\//g , "");
|
|
367
367
|
return defaultQuadLinkValue[page][service];
|
|
368
368
|
}
|
|
369
369
|
|
|
@@ -724,6 +724,8 @@ modForm.processQSFormSubmitSuccess = function(response, xhr) {
|
|
|
724
724
|
// eslint-disable-next-line camelcase
|
|
725
725
|
project_id: dataCaptureKey,
|
|
726
726
|
// eslint-disable-next-line camelcase
|
|
727
|
+
data_capture_key: dataCaptureKey,
|
|
728
|
+
// eslint-disable-next-line camelcase
|
|
727
729
|
form_path: this.opts.landingPage,
|
|
728
730
|
qsclickkey: clickKeyUUID
|
|
729
731
|
});
|