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
Vincent Bechu
jio
Commits
083f8f7a
Commit
083f8f7a
authored
Sep 09, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Promise.js error static method manage promise parameter
parent
d204822f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
src/jio/core/Promise.js
src/jio/core/Promise.js
+12
-6
No files found.
src/jio/core/Promise.js
View file @
083f8f7a
...
...
@@ -50,22 +50,28 @@ Promise.when = function (item, onSuccess, onError, onProgress) {
};
/**
* error(
value
, [onError]): Promise
* error(
item
, [onError]): Promise
*
* Return
value
as first parameter of the promise answer. The method returns a
* Return
an item
as first parameter of the promise answer. The method returns a
* rejected promise.
*
* Promise.error('a').then(null, console.log); // shows 'a'
* Promise.error(Promise.when('a')).then(null, console.log); // shows 'a'
*
* @method error
* @static
* @param {Any}
value The value
to use
* @param {Any}
item The item
to use
* @param {Function} [onError] the callback called on error
* @return {Promise} The promise
*/
Promise
.
error
=
function
(
value
,
onError
)
{
var
p
=
new
Promise
().
fail
(
onError
);
p
.
defer
().
reject
(
value
);
Promise
.
error
=
function
(
item
,
onError
)
{
var
p
=
new
Promise
().
fail
(
onError
),
solver
=
p
.
defer
();
Promise
.
when
(
item
,
solver
.
reject
.
bind
(
solver
),
solver
.
reject
.
bind
(
solver
),
solver
.
notify
.
bind
(
solver
)
);
return
p
;
};
...
...
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