bhl-forms 0.2.1 → 0.2.3
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/ssdi.es.js +1 -1
- package/dist/forms/ssdi.iife.js +1 -1
- package/dist/forms/ssdi.json +1 -1
- package/package.json +1 -1
|
@@ -18858,7 +18858,12 @@ function prepData(formData) {
|
|
|
18858
18858
|
var tf = document.getElementsByName("xxTrustedFormCertUrl");
|
|
18859
18859
|
if (tf && tf.length > 0) {
|
|
18860
18860
|
props2.Trusted_Form_URL = tf[0].value;
|
|
18861
|
-
dbg("
|
|
18861
|
+
dbg("Trusted_Form_URL", props2.Trusted_Form_URL);
|
|
18862
|
+
}
|
|
18863
|
+
var tfp = document.getElementsByName("xxTrustedFormPingUrl");
|
|
18864
|
+
if (tfp && tfp.length > 0) {
|
|
18865
|
+
props2.Trusted_Form_Ping_URL = tfp[0].value;
|
|
18866
|
+
dbg("Trusted_Form_Ping_URL", props2.Trusted_Form_Ping_URL);
|
|
18862
18867
|
}
|
|
18863
18868
|
props2.Domain_Abbrev = window.location.hostname.match(/\b(\w)/g).join("").toUpperCase();
|
|
18864
18869
|
var data2 = {
|