(node)
| 293 | _currentRegisterClicked; |
| 294 | |
| 295 | constructor(node) { |
| 296 | this._node = node; |
| 297 | this._node.onmousemove = this._handleMouseMove.bind(this); |
| 298 | this._node.onclick = this._handleClick.bind(this); |
| 299 | } |
| 300 | |
| 301 | $(query) { |
| 302 | return this._node.querySelectorAll(query); |