Commit f6566174 authored by Rob Stupay's avatar Rob Stupay

not working yet

parent d5201d7b
...@@ -108,9 +108,12 @@ class MultiParamManager { ...@@ -108,9 +108,12 @@ class MultiParamManager {
for (var k = 0; k < valArray.length; k++) { for (var k = 0; k < valArray.length; k++) {
var el = valArray[k] var el = valArray[k]
if (ret !== '') ret += ',' if (ret !== '') ret += ','
el.value = el.value.replace(/(^|,\s+|,)([a-zA-Z]+)(\s+,|,|$)/g, '$1"$2"$3') // replace non quoted string - that starts with a letter // start with the beginning of a line or with a comma or with a space and a comma
// then match on a a-zA-Z or a [] or a {} but not a ""
// el.value = el.value.replace(/(^|,\s+|,)(^[a-zA-Z^a-zA-Z]+)(\s+,|,|$)/g, '$1"$2"$3') // replace non quoted string - that starts with a letter
ret += el.value ret += el.value
} }
console.log('ret is ' + ret)
this.clickCallBack(this.funABI.inputs, ret) this.clickCallBack(this.funABI.inputs, ret)
this.emptyInputs() this.emptyInputs()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment