Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rjs_json_form
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
rjs_json_form
Commits
5ba4e004
Commit
5ba4e004
authored
May 04, 2018
by
Boris Kocherov
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
getContent for empty inputs return empty string now
parent
bdc9c516
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
+12
-14
gadget_json_generated_form_child.js
gadget_json_generated_form_child.js
+12
-14
No files found.
gadget_json_generated_form_child.js
View file @
5ba4e004
...
@@ -1049,7 +1049,6 @@
...
@@ -1049,7 +1049,6 @@
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
"
)
{
...
@@ -1065,7 +1064,6 @@
...
@@ -1065,7 +1064,6 @@
}
else
{
}
else
{
json_dict
[
input
.
name
]
=
input
.
value
;
json_dict
[
input
.
name
]
=
input
.
value
;
}
}
}
});
});
for
(
k
in
json_dict
)
{
for
(
k
in
json_dict
)
{
if
(
json_dict
.
hasOwnProperty
(
k
))
{
if
(
json_dict
.
hasOwnProperty
(
k
))
{
...
...
Boris Kocherov
@bk
mentioned in commit
9694691b
·
May 08, 2018
mentioned in commit
9694691b
mentioned in commit 9694691ba98b215a6f4f6732f6288fdfa76e7ea4
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment