We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I don't have a prefix, and focus the input with tab, all the value is selected.
I need this same behavior when prefix is seted.
Reading the files, and doing some debugging, i findout that on focus with tab this function is called by keyUp event :
fixCursorPosition(forceToEndPosition)
I need that when enter this function with tab, (forceToEndPosition === undefined), dont enter this condition
else if (currentCursorPosition < this.getRawValueWithoutPrefixStartPosition()) { this.inputManager.setCursorAt(this.getRawValueWithoutPrefixStartPosition()); }
How can I do that ? I never did a change to a lib before, Do you can make it or I need to copy this lib and use 'locally' ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I don't have a prefix, and focus the input with tab, all the value is selected.
I need this same behavior when prefix is seted.
Reading the files, and doing some debugging, i findout that on focus with tab this function is called by keyUp event :
fixCursorPosition(forceToEndPosition)
I need that when enter this function with tab, (forceToEndPosition === undefined), dont enter this condition
How can I do that ? I never did a change to a lib before,
Do you can make it or I need to copy this lib and use 'locally' ?
The text was updated successfully, but these errors were encountered: