* Return `true` if the user is currently modifying the element value manually. * * @returns {boolean} * @private
()
| 2420 | * @private |
| 2421 | */ |
| 2422 | _isUserManuallyEditingTheValue() { |
| 2423 | // return (this.isFocused && this.isEditing) || this.isWheelEvent || this.isDropEvent; |
| 2424 | return (this.isFocused && this.isEditing) || this.isDropEvent; |
| 2425 | } |
| 2426 | |
| 2427 | /** |
| 2428 | * Execute the given callback function using the given result as its first parameter, and the AutoNumeric object as its second. |