()
| 2493 | |
| 2494 | next(); |
| 2495 | function next() { |
| 2496 | if (index === chain.length) { |
| 2497 | callback(true); |
| 2498 | return; |
| 2499 | } |
| 2500 | |
| 2501 | chain[index](function(response) { |
| 2502 | if (response === false) { |
| 2503 | callback(false); |
| 2504 | return; |
| 2505 | } |
| 2506 | index++; |
| 2507 | next(); |
| 2508 | }); |
| 2509 | } |
| 2510 | }; |
| 2511 | |
| 2512 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected