()
| 480 | //operation is called right away. DO NOT REFACTOR! |
| 481 | forEach(animations, function(animation, index) { |
| 482 | var progress = function() { |
| 483 | afterAnimationComplete(index); |
| 484 | }; |
| 485 | switch(animation.event) { |
| 486 | case 'setClass': |
| 487 | cancellations.push(animation.fn(element, classNameAdd, classNameRemove, progress)); |
nothing calls this directly
no test coverage detected