Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jio
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
Tomáš Peterka
jio
Commits
814d101b
Commit
814d101b
authored
Sep 16, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
promy join and choose cancels promises when cancel method exist
parent
d15716c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/promy/promy.js
src/promy/promy.js
+6
-2
No files found.
src/promy/promy.js
View file @
814d101b
...
@@ -642,7 +642,9 @@
...
@@ -642,7 +642,9 @@
function
cancel
()
{
function
cancel
()
{
var
j
;
var
j
;
for
(
j
=
0
;
j
<
promises
.
length
;
j
+=
1
)
{
for
(
j
=
0
;
j
<
promises
.
length
;
j
+=
1
)
{
promises
[
j
].
cancel
();
if
(
typeof
promises
[
j
].
cancel
===
'
function
'
)
{
promises
[
j
].
cancel
();
}
}
}
}
}
deferred
=
new
Deferred
(
cancel
);
deferred
=
new
Deferred
(
cancel
);
...
@@ -691,7 +693,9 @@
...
@@ -691,7 +693,9 @@
function
cancel
()
{
function
cancel
()
{
var
j
;
var
j
;
for
(
j
=
0
;
j
<
promises
.
length
;
j
+=
1
)
{
for
(
j
=
0
;
j
<
promises
.
length
;
j
+=
1
)
{
promises
[
j
].
cancel
();
if
(
typeof
promises
[
j
].
cancel
===
'
function
'
)
{
promises
[
j
].
cancel
();
}
}
}
}
}
deferred
=
new
Deferred
(
cancel
);
deferred
=
new
Deferred
(
cancel
);
...
...
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