Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Eugene Shen
jio
Commits
4f9a7135
Commit
4f9a7135
authored
11 years ago
by
Tristan Cavelier
Browse files
Options
Download
Email Patches
Plain Diff
jobReference feature added
parent
65b12ef3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
src/jio/features/jobReference.js
src/jio/features/jobReference.js
+22
-0
No files found.
src/jio/features/jobReference.js
0 → 100644
View file @
4f9a7135
/*jslint indent: 2, maxlen: 80, sloppy: true, unparam: true */
/*global ReferenceArray */
function
enableJobReference
(
jio
,
shared
,
options
)
{
// creates
// - shared.jobs Object Array
// uses 'job', 'jobEnd' events
shared
.
jobs
=
[];
var
job_references
=
new
ReferenceArray
(
shared
.
jobs
);
shared
.
on
(
'
job
'
,
function
(
param
)
{
job_references
.
put
(
param
);
});
shared
.
on
(
'
jobEnd
'
,
function
(
param
)
{
job_references
.
remove
(
param
);
});
}
This diff is collapsed.
Click to expand it.
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