()
| 5562 | next(); |
| 5563 | |
| 5564 | function next() { |
| 5565 | if (index === chain.length) { |
| 5566 | callback(true); |
| 5567 | return; |
| 5568 | } |
| 5569 | |
| 5570 | chain[index](function (response) { |
| 5571 | if (response === false) { |
| 5572 | callback(false); |
| 5573 | return; |
| 5574 | } |
| 5575 | index++; |
| 5576 | next(); |
| 5577 | }); |
| 5578 | } |
| 5579 | }; |
| 5580 | |
| 5581 | AnimateRunner.all = function (runners, callback) { |
no test coverage detected