(id)
| 1736 | } |
| 1737 | |
| 1738 | getById(id) { |
| 1739 | let animations = this.getChildren(1, 1, 1), |
| 1740 | i = animations.length; |
| 1741 | while(i--) { |
| 1742 | if (animations[i].vars.id === id) { |
| 1743 | return animations[i]; |
| 1744 | } |
| 1745 | } |
| 1746 | } |
| 1747 | |
| 1748 | remove(child) { |
| 1749 | if (_isString(child)) { |
no test coverage detected