You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 22, 2021. It is now read-only.
I love your plugin, I run into problem in the Hebrew language, while trying to add the latter "ת" it keyCode is 188 while ascii does reconize it as a comma,
my short fix in the js file ng-tags-input.js in the event input-keydown I've added a small check
if(event.keyCode === KEYS.comma && event.key != ',') shouldAdd = false;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I love your plugin, I run into problem in the Hebrew language, while trying to add the latter "ת" it keyCode is 188 while ascii does reconize it as a comma,
my short fix in the js file ng-tags-input.js in the event input-keydown I've added a small check
if(event.keyCode === KEYS.comma && event.key != ',') shouldAdd = false;
The text was updated successfully, but these errors were encountered: