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
Rafael Monnerat
rjs_json_form
Commits
93ed8524
Commit
93ed8524
authored
Apr 01, 2018
by
Boris Kocherov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify selfRemove
parent
64584dbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
gadget_json_generated_form.js
gadget_json_generated_form.js
+3
-8
No files found.
gadget_json_generated_form.js
View file @
93ed8524
...
@@ -696,16 +696,14 @@
...
@@ -696,16 +696,14 @@
event
.
srcElement
.
focus
();
event
.
srcElement
.
focus
();
});
});
})
})
.
declareAcquiredMethod
(
"
deleteChildrenParent
"
,
"
deleteChildren
"
)
.
declareAcquiredMethod
(
"
selfRemove
"
,
"
deleteChildren
"
)
.
allowPublicAcquisition
(
"
deleteChildren
"
,
function
(
scope
)
{
.
allowPublicAcquisition
(
"
deleteChildren
"
,
function
(
arr
,
scope
)
{
var
g
=
this
,
var
g
=
this
,
key
,
key
,
objects
=
this
.
props
.
objects
,
objects
=
this
.
props
.
objects
,
element
=
getSubGadgetElement
(
this
,
scope
),
element
=
getSubGadgetElement
(
g
,
scope
),
parent
=
element
.
getAttribute
(
"
data-json-parent
"
),
parent
=
element
.
getAttribute
(
"
data-json-parent
"
),
tasks
=
[];
tasks
=
[];
// TODO strange rjs behavior
scope
=
scope
[
0
];
if
(
objects
.
hasOwnProperty
(
parent
))
{
if
(
objects
.
hasOwnProperty
(
parent
))
{
parent
=
objects
[
parent
];
parent
=
objects
[
parent
];
for
(
key
in
parent
)
{
for
(
key
in
parent
)
{
...
@@ -724,9 +722,6 @@
...
@@ -724,9 +722,6 @@
}
}
return
RSVP
.
All
(
tasks
);
return
RSVP
.
All
(
tasks
);
})
})
.
declareMethod
(
"
selfRemove
"
,
function
()
{
return
this
.
deleteChildrenParent
(
this
.
element
.
getAttribute
(
'
data-gadget-scope
'
));
})
.
declareAcquiredMethod
(
"
processValidationParent
"
,
"
processValidation
"
)
.
declareAcquiredMethod
(
"
processValidationParent
"
,
"
processValidation
"
)
.
allowPublicAcquisition
(
"
processValidation
"
,
function
(
json_dict
)
{
.
allowPublicAcquisition
(
"
processValidation
"
,
function
(
json_dict
)
{
...
...
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