(element)
| 2737 | } |
| 2738 | |
| 2739 | function clearElementAnimationState(element) { |
| 2740 | var node = getDomNode(element); |
| 2741 | node.removeAttribute(NG_ANIMATE_ATTR_NAME); |
| 2742 | activeAnimationsLookup.remove(node); |
| 2743 | } |
| 2744 | |
| 2745 | function isMatchingElement(nodeOrElmA, nodeOrElmB) { |
| 2746 | return getDomNode(nodeOrElmA) === getDomNode(nodeOrElmB); |
no test coverage detected