bhl-forms 0.2.2 → 0.2.4
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/dist/bhl-forms.es.js +6 -1
- package/dist/bhl-forms.iife.js +2 -2
- package/dist/bhl-forms.modern.es.js +6 -1
- package/dist/bhl-forms.modern.iife.js +8 -8
- package/dist/bhl-forms.modern.umd.js +8 -8
- package/dist/bhl-forms.umd.js +2 -2
- package/dist/forms/mechanics.es.js +1 -1
- package/dist/forms/mechanics.iife.js +1 -1
- package/dist/forms/mechanics.json +1 -1
- package/package.json +1 -1
package/dist/bhl-forms.es.js
CHANGED
|
@@ -11488,7 +11488,12 @@ function prepData(formData) {
|
|
|
11488
11488
|
var tf = document.getElementsByName("xxTrustedFormCertUrl");
|
|
11489
11489
|
if (tf && tf.length > 0) {
|
|
11490
11490
|
props2.Trusted_Form_URL = tf[0].value;
|
|
11491
|
-
dbg("
|
|
11491
|
+
dbg("Trusted_Form_URL", props2.Trusted_Form_URL);
|
|
11492
|
+
}
|
|
11493
|
+
var tfp = document.getElementsByName("xxTrustedFormPingUrl");
|
|
11494
|
+
if (tfp && tfp.length > 0) {
|
|
11495
|
+
props2.Trusted_Form_Ping_URL = tfp[0].value;
|
|
11496
|
+
dbg("Trusted_Form_Ping_URL", props2.Trusted_Form_Ping_URL);
|
|
11492
11497
|
}
|
|
11493
11498
|
props2.Domain_Abbrev = window.location.hostname.match(/\b(\w)/g).join("").toUpperCase();
|
|
11494
11499
|
const data = {
|