()
| 6212 | |
| 6213 | next(); |
| 6214 | function next() { |
| 6215 | if (index === chain.length) { |
| 6216 | callback(true); |
| 6217 | return; |
| 6218 | } |
| 6219 | |
| 6220 | chain[index](function(response) { |
| 6221 | if (response === false) { |
| 6222 | callback(false); |
| 6223 | return; |
| 6224 | } |
| 6225 | index++; |
| 6226 | next(); |
| 6227 | }); |
| 6228 | } |
| 6229 | }; |
| 6230 | |
| 6231 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected