()
| 555 | } |
| 556 | |
| 557 | _onmousedown() { |
| 558 | if (this.nonInteractive) { |
| 559 | return; |
| 560 | } |
| 561 | |
| 562 | this._setActiveState(true); |
| 563 | activeButton = this; // eslint-disable-line |
| 564 | } |
| 565 | |
| 566 | _ontouchend(e: TouchEvent) { |
| 567 | if (this.disabled || this.loading) { |
nothing calls this directly
no test coverage detected