* Resets the resize state
()
| 47 | * Resets the resize state |
| 48 | */ |
| 49 | reset() { |
| 50 | if (!this._resized) { |
| 51 | return; |
| 52 | } |
| 53 | |
| 54 | this._resized = false; |
| 55 | |
| 56 | delete this._currentDeltaX; |
| 57 | delete this._currentDeltaY; |
| 58 | |
| 59 | delete this._totalDeltaX; |
| 60 | delete this._totalDeltaY; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Returns whether the popover has been resized |
no outgoing calls
no test coverage detected