* function callback for the pointerup event * @ignore
(event: Pointer)
| 210 | * @ignore |
| 211 | */ |
| 212 | release(event: Pointer): boolean | void { |
| 213 | if (!this.released) { |
| 214 | this.released = true; |
| 215 | this.isDirty = true; |
| 216 | timer.clearTimer(this.holdTimeout); |
| 217 | this.holdTimeout = -1; |
| 218 | return this.onRelease(event); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * function called when the object is pressed and released (to be extended) |
no test coverage detected