X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=roojs-debug.js;fp=roojs-debug.js;h=300a740d370746bebc12fbca49a4aeac1c0503ef;hp=3b8a47648d97a75546702e5d5edc1bb169ba7df9;hb=8128fe119502d6a4e8b9476a26cd52464d41f602;hpb=740d4470257fe79edd7dfaef44531abf2473e84e diff --git a/roojs-debug.js b/roojs-debug.js index 3b8a47648d..300a740d37 100644 --- a/roojs-debug.js +++ b/roojs-debug.js @@ -47363,7 +47363,10 @@ clientValidation Boolean Applies to submit only. Pass true to call fo var fd = new FormData(this.el.dom); var ret = {}; while (pair = fd.entries().next()) { - ret[pair[0]] = pair[1]; // not sure how this will handle duplicates.. + if (pair.done) { + break; + } + ret[pair.value[0]] = pair.value[1]; // not sure how this will handle duplicates.. }; return ret; }