(element)
| 2704 | } |
| 2705 | |
| 2706 | function clearElementAnimationState(element) { |
| 2707 | var node = getDomNode(element); |
| 2708 | node.removeAttribute(NG_ANIMATE_ATTR_NAME); |
| 2709 | activeAnimationsLookup.remove(node); |
| 2710 | } |
| 2711 | |
| 2712 | function isMatchingElement(nodeOrElmA, nodeOrElmB) { |
| 2713 | return getDomNode(nodeOrElmA) === getDomNode(nodeOrElmB); |
no test coverage detected