()
| 6285 | |
| 6286 | next(); |
| 6287 | function next() { |
| 6288 | if (index === chain.length) { |
| 6289 | callback(true); |
| 6290 | return; |
| 6291 | } |
| 6292 | |
| 6293 | chain[index](function(response) { |
| 6294 | if (response === false) { |
| 6295 | callback(false); |
| 6296 | return; |
| 6297 | } |
| 6298 | index++; |
| 6299 | next(); |
| 6300 | }); |
| 6301 | } |
| 6302 | }; |
| 6303 | |
| 6304 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected