mod-build 3.4.37 → 3.4.38-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/gulp-tasks/grab-cdn.js +2 -1
- package/package.json +1 -1
- package/src/scripts/qs-form.js +2 -0
package/gulp-tasks/grab-cdn.js
CHANGED
|
@@ -49,7 +49,8 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
49
49
|
const remoteFilesForLocalDev = {
|
|
50
50
|
'/scripts/mod-form.js': ['/temp/scripts/', 'mod-form.js'],
|
|
51
51
|
'/scripts/mod-utils.js': ['/temp/scripts/', 'mod-utils.js'],
|
|
52
|
-
'/scripts/qs-form.js': ['/temp/scripts/', 'qs-form.js']
|
|
52
|
+
'/scripts/qs-form.js': ['/temp/scripts/', 'qs-form.js'],
|
|
53
|
+
'/scripts/components/callrail.js': ['/temp/scripts/components', 'callrail.js']
|
|
53
54
|
};
|
|
54
55
|
|
|
55
56
|
if (!nodeEnv) {
|
package/package.json
CHANGED
package/src/scripts/qs-form.js
CHANGED
|
@@ -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
|
});
|