MCPcopy Create free account
hub / github.com/angular-ui/ui-grid / next

Function next

lib/test/angular/1.4.3/angular-animate.js:2495–2509  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 1

angular-animate.jsFile · 0.70

Calls 1

callbackFunction · 0.70

Tested by

no test coverage detected