(element)
| 2352 | } |
| 2353 | |
| 2354 | function clearElementAnimationState(element) { |
| 2355 | var node = getDomNode(element); |
| 2356 | node.removeAttribute(NG_ANIMATE_ATTR_NAME); |
| 2357 | activeAnimationsLookup.remove(node); |
| 2358 | } |
| 2359 | |
| 2360 | function isMatchingElement(nodeOrElmA, nodeOrElmB) { |
| 2361 | return getDomNode(nodeOrElmA) === getDomNode(nodeOrElmB); |
no test coverage detected