(element)
| 2712 | } |
| 2713 | |
| 2714 | function clearElementAnimationState(element) { |
| 2715 | var node = getDomNode(element); |
| 2716 | node.removeAttribute(NG_ANIMATE_ATTR_NAME); |
| 2717 | activeAnimationsLookup.remove(node); |
| 2718 | } |
| 2719 | |
| 2720 | function isMatchingElement(nodeOrElmA, nodeOrElmB) { |
| 2721 | return getDomNode(nodeOrElmA) === getDomNode(nodeOrElmB); |
no test coverage detected