()
| 6152 | |
| 6153 | next(); |
| 6154 | function next() { |
| 6155 | if (index === chain.length) { |
| 6156 | callback(true); |
| 6157 | return; |
| 6158 | } |
| 6159 | |
| 6160 | chain[index](function(response) { |
| 6161 | if (response === false) { |
| 6162 | callback(false); |
| 6163 | return; |
| 6164 | } |
| 6165 | index++; |
| 6166 | next(); |
| 6167 | }); |
| 6168 | } |
| 6169 | }; |
| 6170 | |
| 6171 | AnimateRunner.all = function(runners, callback) { |
no test coverage detected