* Handler for the 'focus' event. * We update the info of the focused state in the `this.isFocused` variable when the element gets focused. * @private
()
| 6416 | * @private |
| 6417 | */ |
| 6418 | _onFocus() { |
| 6419 | if (this.settings.isCancellable) { |
| 6420 | // Save the current unformatted value for later use by the 'cancellable' feature |
| 6421 | this._saveCancellableValue(); |
| 6422 | } |
| 6423 | } |
| 6424 | |
| 6425 | /** |
| 6426 | * Handler for the 'focusin' event. |
no test coverage detected