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.
@@ -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 = element.querySelectorAll('input, select, textarea');
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "puvox-library",
3
- "version": "1.1.31",
3
+ "version": "1.1.32",
4
4
  "description": "library-class-javascript",
5
5
  "main": "library_standard.js",
6
6
  "scripts": {