()
| 1635 | var animationReflowQueue = []; |
| 1636 | var cancelAnimationReflow; |
| 1637 | function clearCacheAfterReflow() { |
| 1638 | if (!cancelAnimationReflow) { |
| 1639 | cancelAnimationReflow = $$animateReflow(function() { |
| 1640 | animationReflowQueue = []; |
| 1641 | cancelAnimationReflow = null; |
| 1642 | lookupCache = {}; |
| 1643 | }); |
| 1644 | } |
| 1645 | } |
| 1646 | |
| 1647 | function afterReflow(element, callback) { |
| 1648 | if (cancelAnimationReflow) { |
no outgoing calls
no test coverage detected