(e: MouseEvent)
| 777 | } |
| 778 | |
| 779 | _incSpin(e: MouseEvent) { |
| 780 | if (this._isFocused || this._incIconDisabled) { |
| 781 | e.preventDefault(); |
| 782 | } |
| 783 | if (!this._incIconDisabled) { |
| 784 | this._spinValue(true, true); |
| 785 | } else { |
| 786 | this.input.focus(); |
| 787 | } |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * Calculates the time which should be waited until _spinValue function is called. |
nothing calls this directly
no test coverage detected