Skip to content
New issue

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

Russian comma key doesn't work #222

Open
Tsimon-Dorakh opened this issue Oct 24, 2013 · 4 comments
Open

Russian comma key doesn't work #222

Tsimon-Dorakh opened this issue Oct 24, 2013 · 4 comments

Comments

@Tsimon-Dorakh
Copy link

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.

@drakmail
Copy link

👍

@drakmail
Copy link

Similar issue - when I press б symbol (it located on same key with comma character) it recognizing it as comma =/

@zmichael
Copy link

zmichael commented Nov 7, 2013

also meet this bug.

@hilobok
Copy link

hilobok commented Jan 15, 2014

Quick fix for this in #220.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants