(event)
| 149 | } |
| 150 | |
| 151 | _handleMouseMove(event) { |
| 152 | this._updateVisibility(event.target); |
| 153 | |
| 154 | this._position.x = event.clientX - this._hotSpot.x; |
| 155 | this._position.y = event.clientY - this._hotSpot.y; |
| 156 | |
| 157 | this._updatePosition(); |
| 158 | } |
| 159 | |
| 160 | _handleMouseUp(event) { |
| 161 | // We might get this event because of a drag operation that |
no test coverage detected