Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
a174dc20
Commit
a174dc20
authored
Dec 12, 2014
by
Ioannis Papagiannopoulos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
startService added again to fieldset
parent
58b67b90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
9 deletions
+32
-9
dream/platform/src/fieldset/fieldset.js
dream/platform/src/fieldset/fieldset.js
+16
-0
dream/platform/src/jsplumb/jsplumb.js
dream/platform/src/jsplumb/jsplumb.js
+16
-9
No files found.
dream/platform/src/fieldset/fieldset.js
View file @
a174dc20
...
@@ -131,6 +131,7 @@
...
@@ -131,6 +131,7 @@
// getContent of all subfields
// getContent of all subfields
.
declareMethod
(
"
getContent
"
,
function
()
{
.
declareMethod
(
"
getContent
"
,
function
()
{
console
.
log
(
"
GET CONTENT SIMPLE FIELDSET
"
);
var
i
,
promise_list
=
[],
gadget
=
this
;
var
i
,
promise_list
=
[],
gadget
=
this
;
for
(
i
=
0
;
i
<
this
.
props
.
field_gadget_list
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
this
.
props
.
field_gadget_list
.
length
;
i
+=
1
)
{
promise_list
.
push
(
this
.
props
.
field_gadget_list
[
i
].
getContent
());
promise_list
.
push
(
this
.
props
.
field_gadget_list
[
i
].
getContent
());
...
@@ -149,8 +150,23 @@
...
@@ -149,8 +150,23 @@
}
}
}
}
}
}
console
.
log
(
"
GET CONTENT SIMPLE FIELDSET 2
"
);
console
.
log
(
result
);
return
result
;
return
result
;
});
});
})
.
declareMethod
(
'
startService
'
,
function
()
{
console
.
log
(
"
startservice FIElDSET 1
"
);
var
gadget
=
this
,
i
,
promise_list
=
[];
for
(
i
=
0
;
i
<
gadget
.
props
.
field_gadget_list
.
length
;
i
+=
1
)
{
if
(
gadget
.
props
.
field_gadget_list
[
i
].
startService
)
{
promise_list
.
push
(
gadget
.
props
.
field_gadget_list
[
i
].
startService
());
}
}
console
.
log
(
"
there are
"
+
promise_list
.
length
+
"
subgadget promises
"
);
return
RSVP
.
all
(
promise_list
);
});
});
}(
window
,
rJS
,
RSVP
,
Handlebars
,
initGadgetMixin
));
}(
window
,
rJS
,
RSVP
,
Handlebars
,
initGadgetMixin
));
dream/platform/src/jsplumb/jsplumb.js
View file @
a174dc20
...
@@ -680,20 +680,27 @@
...
@@ -680,20 +680,27 @@
node_id
)]);
node_id
)]);
})
})
.
push
(
function
(
fieldset_gadget
)
{
.
push
(
function
(
fieldset_gadget
)
{
node_edit_popup
.
enhanceWithin
();
console
.
log
(
fieldset_gadget
[
0
]);
node_edit_popup
.
popup
(
'
open
'
);
return
RSVP
.
Queue
()
return
fieldset_gadget
[
0
];
.
push
(
function
()
{
console
.
log
(
fieldset_gadget
[
0
]);
fieldset_gadget
[
0
].
startService
();
})
.
push
(
function
()
{
console
.
log
(
"
:::::::::::::::::::::::::::
"
);
console
.
log
(
fieldset_gadget
);
console
.
log
(
"
:::::::::::::::::::::::::::
"
);
node_edit_popup
.
enhanceWithin
();
node_edit_popup
.
popup
(
'
open
'
);
return
fieldset_gadget
[
0
];
});
})
})
.
push
(
function
(
fieldset_gadget
)
{
.
push
(
function
(
fieldset_gadget
)
{
// Expose the dialog handling promise so that we can wait for it in
// Expose the dialog handling promise so that we can wait for it in
// test.
// test.
console
.
log
(
"
:::::::::::::::::::2
"
);
console
.
log
(
"
=======:::::::::::::::::::=======
"
);
console
.
log
(
"
:::::::::::::::::::2
"
);
console
.
log
(
"
:::::::::::::::::::2
"
);
console
.
log
(
fieldset_gadget
);
console
.
log
(
fieldset_gadget
);
console
.
log
(
"
:::::::::::::::::::2
"
);
console
.
log
(
"
=======:::::::::::::::::::=======
"
);
console
.
log
(
"
:::::::::::::::::::2
"
);
console
.
log
(
"
:::::::::::::::::::2
"
);
gadget
.
props
.
dialog_promise
=
RSVP
.
any
([
gadget
.
props
.
dialog_promise
=
RSVP
.
any
([
save_promise
(
fieldset_gadget
,
node_id
),
save_promise
(
fieldset_gadget
,
node_id
),
delete_promise
delete_promise
...
...
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