Commit 5ba4e004 authored by Boris Kocherov's avatar Boris Kocherov

getContent for empty inputs return empty string now

parent bdc9c516
...@@ -1049,22 +1049,20 @@ ...@@ -1049,22 +1049,20 @@
var json_dict = {}, var json_dict = {},
k; k;
g.props.inputs.forEach(function (input) { g.props.inputs.forEach(function (input) {
if (input.name === "" || input.value !== "") { if (input.type === 'number') {
if (input.type === 'number') { json_dict[input.name] = parseInt(input.value, 10);
json_dict[input.name] = parseInt(input.value, 10); } else if (input.value === "true") {
} else if (input.value === "true") { json_dict[input.name] = true;
json_dict[input.name] = true; } else if (input.value === "false") {
} else if (input.value === "false") { json_dict[input.name] = false;
json_dict[input.name] = false; } else if (input.tagName === "TEXTAREA") {
} else if (input.tagName === "TEXTAREA") { if (input["data-format"] === "string") {
if (input["data-format"] === "string") {
json_dict[input.name] = input.value;
} else {
json_dict[input.name] = input.value.split('\n');
}
} else {
json_dict[input.name] = input.value; json_dict[input.name] = input.value;
} else {
json_dict[input.name] = input.value.split('\n');
} }
} else {
json_dict[input.name] = input.value;
} }
}); });
for (k in json_dict) { for (k in json_dict) {
......
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