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
Hello,
↑Subject. It happens because lib is tracking only english (may be others) keyboards.
... (event.which === $.ui.keyCode.COMMA && event.shiftKey === false) || ...
For Russian keyboard should be
... (event.which === $.ui.keyCode.COMMA && event.shiftKey === false) || (event.which === 190 && event.shiftKey === true) || ...
May be, there will be new feature to support multinational keyboards. Thanks for your attention.
The text was updated successfully, but these errors were encountered:
👍
Sorry, something went wrong.
Similar issue - when I press б symbol (it located on same key with comma character) it recognizing it as comma =/
б
also meet this bug.
Quick fix for this in #220.
No branches or pull requests
Hello,
↑Subject. It happens because lib is tracking only english (may be others) keyboards.
For Russian keyboard should be
May be, there will be new feature to support multinational keyboards.
Thanks for your attention.
The text was updated successfully, but these errors were encountered: