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

getContent for empty inputs return empty string now

parent bdc9c516
......@@ -1049,7 +1049,6 @@
var json_dict = {},
k;
g.props.inputs.forEach(function (input) {
if (input.name === "" || input.value !== "") {
if (input.type === 'number') {
json_dict[input.name] = parseInt(input.value, 10);
} else if (input.value === "true") {
......@@ -1065,7 +1064,6 @@
} else {
json_dict[input.name] = input.value;
}
}
});
for (k in json_dict) {
if (json_dict.hasOwnProperty(k)) {
......
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