()
| 5538 | |
| 5539 | next(); |
| 5540 | function next() { |
| 5541 | if (index === chain.length) { |
| 5542 | callback(true); |
| 5543 | return; |
| 5544 | } |
| 5545 | |
| 5546 | chain[index](function(response) { |
| 5547 | if (response === false) { |
| 5548 | callback(false); |
| 5549 | return; |
| 5550 | } |
| 5551 | index++; |
| 5552 | next(); |
| 5553 | }); |
| 5554 | } |
| 5555 | }; |
| 5556 | |
| 5557 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected