()
| 1165 | var animationReflowQueue = []; |
| 1166 | var cancelAnimationReflow; |
| 1167 | function clearCacheAfterReflow() { |
| 1168 | if (!cancelAnimationReflow) { |
| 1169 | cancelAnimationReflow = $$animateReflow(function() { |
| 1170 | animationReflowQueue = []; |
| 1171 | cancelAnimationReflow = null; |
| 1172 | lookupCache = {}; |
| 1173 | }); |
| 1174 | } |
| 1175 | } |
| 1176 | |
| 1177 | function afterReflow(element, callback) { |
| 1178 | if(cancelAnimationReflow) { |
no outgoing calls
no test coverage detected