Handles click events for the toolbar.
(event: MouseEvent)
| 201 | |
| 202 | /** Handles click events for the toolbar. */ |
| 203 | onClick(event: MouseEvent) { |
| 204 | if (this.disabled() || (event as PointerEvent).pointerType === '') return; |
| 205 | this._goto(event); |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * Sets the toolbar to its default initial state. |
no test coverage detected