- 26 Feb, 2020 2 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
- 25 Feb, 2020 12 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
This reverts commit e410c7ce.
-
Romain Courteaud authored
This reverts commit 974b8596.
-
Romain Courteaud authored
This reverts commit 8dcbf352.
-
Romain Courteaud authored
Not working with listbox
-
Romain Courteaud authored
-
Romain Courteaud authored
Reduce number of .then call. But memory usage increases :/
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
Romain Courteaud authored
-
- 17 Dec, 2019 2 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
Cancel all subpromises as soon as cancelled.
-
- 18 May, 2018 3 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
This functionnality has never been used. Revert "Queue notifications are now enabled" This reverts commit 58953a31. Revert "notifications are not propagated to parents fixed" This reverts commit 41eba17a. Revert "add notifier to `all` and `any`" This reverts commit 34a4233b. Revert "Add Promise progress" This reverts commit a79070b4.
-
Romain Courteaud authored
This reverts commit f47dc87e
-
- 05 Jan, 2017 2 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
It breaks Firefox compatibility for jio/renderjs.
-
- 04 Jan, 2017 1 commit
-
-
Romain Courteaud authored
-
- 29 Dec, 2016 1 commit
-
-
Boris Kocherov authored
-
- 14 Dec, 2015 2 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
-
- 06 Feb, 2014 2 commits
-
-
Tristan Cavelier authored
-
Tristan Cavelier authored
-
- 14 Nov, 2013 1 commit
-
-
Romain Courteaud authored
-
- 17 Oct, 2013 1 commit
-
-
Romain Courteaud authored
-
- 09 Oct, 2013 1 commit
-
-
Romain Courteaud authored
-
- 04 Oct, 2013 1 commit
-
-
Tristan Cavelier authored
Conflicts: lib/rsvp/all.js test/tests/extension_test.js
-
- 30 Sep, 2013 3 commits
-
-
Romain Courteaud authored
-
Romain Courteaud authored
Rejection should be propagated.
-
Romain Courteaud authored
-
- 27 Sep, 2013 2 commits
-
-
Tristan Cavelier authored
-
Tristan Cavelier authored
-
- 26 Sep, 2013 2 commits
-
-
Tristan Cavelier authored
-
Tristan Cavelier authored
-
- 25 Sep, 2013 1 commit
-
-
Romain Courteaud authored
-
- 23 Sep, 2013 1 commit
-
-
Romain Courteaud authored
Queue allow to control the execution of a list of promises. Especially, it can cancel the list of promises. The queue is fulfilled only when all pushed promises are fulfilled. It gets the latest push promise fulfillmentValue as result. var queue; queue = RSVP.Queue(); queue.push(function () { return 1; }; queue.push(function (value) { return value + 1; }; queue.then(function (value) { assert(value === 2); };
-