Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
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
Alexandra Rogova
jio_mebibou
Commits
18e2b967
Commit
18e2b967
authored
Aug 26, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
useless var removed
parent
d73a4045
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
src/jio/core/JIO.js
src/jio/core/JIO.js
+11
-10
No files found.
src/jio/core/JIO.js
View file @
18e2b967
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
function
JIO
(
storage_spec
,
options
)
{
function
JIO
(
storage_spec
,
options
)
{
JIO
.
super_
.
call
(
this
);
JIO
.
super_
.
call
(
this
);
var
that
=
this
,
shared
=
new
EventEmitter
();
var
shared
=
new
EventEmitter
();
shared
.
storage_spec
=
deepClone
(
storage_spec
);
shared
.
storage_spec
=
deepClone
(
storage_spec
);
...
@@ -16,15 +16,16 @@ function JIO(storage_spec, options) {
...
@@ -16,15 +16,16 @@ function JIO(storage_spec, options) {
throw
new
TypeError
(
"
JIO(): Optional argument 2 is not of type 'object'
"
);
throw
new
TypeError
(
"
JIO(): Optional argument 2 is not of type 'object'
"
);
}
}
enableRestAPI
(
that
,
shared
,
options
);
enableRestAPI
(
this
,
shared
,
options
);
enableRestParamChecker
(
that
,
shared
,
options
);
enableRestParamChecker
(
this
,
shared
,
options
);
enableJobMaker
(
that
,
shared
,
options
);
enableJobMaker
(
this
,
shared
,
options
);
enableJobRetry
(
that
,
shared
,
options
);
enableJobReference
(
this
,
shared
,
options
);
enableJobChecker
(
that
,
shared
,
options
);
enableJobRetry
(
this
,
shared
,
options
);
enableJobQueue
(
that
,
shared
,
options
);
enableJobChecker
(
this
,
shared
,
options
);
enableJobRecovery
(
that
,
shared
,
options
);
enableJobQueue
(
this
,
shared
,
options
);
enableJobTimeout
(
that
,
shared
,
options
);
enableJobRecovery
(
this
,
shared
,
options
);
enableJobExecuter
(
that
,
shared
,
options
);
enableJobTimeout
(
this
,
shared
,
options
);
enableJobExecuter
(
this
,
shared
,
options
);
shared
.
emit
(
'
load
'
);
shared
.
emit
(
'
load
'
);
}
}
...
...
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