()
| 516 | } |
| 517 | |
| 518 | _onTouchTargetClick() { |
| 519 | this._handleInputClick(); |
| 520 | |
| 521 | if (!this.disabled) { |
| 522 | // Normally the input should be focused already, but if the click |
| 523 | // comes from the touch target, then we might have to focus it ourselves. |
| 524 | this._inputElement.nativeElement.focus(); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * Prevent click events that come from the `<label/>` element from bubbling. This prevents the |
nothing calls this directly
no test coverage detected