* function callback for the tap and hold timer event * @ignore
()
| 234 | * @ignore |
| 235 | */ |
| 236 | hold(): void { |
| 237 | timer.clearTimer(this.holdTimeout); |
| 238 | this.holdTimeout = -1; |
| 239 | this.isDirty = true; |
| 240 | if (!this.released) { |
| 241 | this.onHold(); |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * function called when the object is pressed and held<br> |
no test coverage detected