Open talvi opened 9 years ago
Element value cut by cursor position even if value is properly filled. Check _onBlur function. Fast fix: this.mask.props.value = value.substr(0, cursor) -> this.mask.props.value = value.substr(0, value.length)
Element value cut by cursor position even if value is properly filled. Check _onBlur function. Fast fix: this.mask.props.value = value.substr(0, cursor) -> this.mask.props.value = value.substr(0, value.length)