Commit 05471f46 authored by Romain Courteaud's avatar Romain Courteaud

Use queue chaining to simplify code.

parent dcd0f5d8
...@@ -695,9 +695,9 @@ ...@@ -695,9 +695,9 @@
queue.push(ready_wrapper); queue.push(ready_wrapper);
for (i = 0; i < tmp_constructor.ready_list.length; i += 1) { for (i = 0; i < tmp_constructor.ready_list.length; i += 1) {
// Put a timeout? // Put a timeout?
queue.push(tmp_constructor.ready_list[i]); queue.push(tmp_constructor.ready_list[i])
// Always return the gadget instance after ready function // Always return the gadget instance after ready function
queue.push(ready_wrapper); .push(ready_wrapper);
} }
queue.push(resolve, function (e) { queue.push(resolve, function (e) {
reject(e); reject(e);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment