()
| 6350 | |
| 6351 | next(); |
| 6352 | function next() { |
| 6353 | if (index === chain.length) { |
| 6354 | callback(true); |
| 6355 | return; |
| 6356 | } |
| 6357 | |
| 6358 | chain[index](function(response) { |
| 6359 | if (response === false) { |
| 6360 | callback(false); |
| 6361 | return; |
| 6362 | } |
| 6363 | index++; |
| 6364 | next(); |
| 6365 | }); |
| 6366 | } |
| 6367 | }; |
| 6368 | |
| 6369 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected