puvox-library 1.1.31 → 1.1.32
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/library_standard.js +1 -1
- package/package.json +1 -1
package/library_standard.js
CHANGED
@@ -423,7 +423,7 @@ class PuvoxLibrary {
|
|
423
423
|
try { formData = new FormData(FormElement);}
|
424
424
|
catch (e) {
|
425
425
|
formData = new FormData();
|
426
|
-
const formElements =
|
426
|
+
const formElements = FormElement.querySelectorAll('input, select, textarea');
|
427
427
|
formElements.forEach(input => { formData.append(input.name, input.value); });
|
428
428
|
}
|
429
429
|
const formDataEntries = formData.entries();
|