@glitchr/transparent 1.0.46 → 1.0.47

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/README.md CHANGED
@@ -1,2 +1 @@
1
1
  # TransparentJS
2
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glitchr/transparent",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "Transparent SPA Application",
5
5
  "main": "src/index.js",
6
6
  "access": "public",
@@ -1453,7 +1453,7 @@
1453
1453
  if (form) {
1454
1454
 
1455
1455
  data = new FormData();
1456
- var formInput = $("form[name='"+form.name+"'] :input, [name^='"+form.name+"\[']");
1456
+ var formInput = $(form).find(":input, [name^='"+form.name+"\[']");
1457
1457
  formInput.each(function() {
1458
1458
 
1459
1459
  if(this.tagName == "BUTTON") {