HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

The problem with Russian characters Б

edited June 2011 in Feedback
When I try to add a tag with the letter "б" is added to only a portion of the tag. For example: дерижабль = дерижа

Then, after the letter "б" begins a new tag

example: дерижа, ль

sorry for google translate...
Tagged:

Best Answer

  • Options
    SS ✭✭
    Answer ✓
    "б" is comma, acts as space, tab or return. Comment line ~ 180 @ jquery.tokeninput.js

    case KEY.TAB:
    case KEY.RETURN:
    //case KEY.COMMA:
    case KEY.SPACE:
    if (selected_dropdown_item) {
    add_token($(selected_dropdown_item));

Answers

  • Options
    SS ✭✭
    Answer ✓
    "б" is comma, acts as space, tab or return. Comment line ~ 180 @ jquery.tokeninput.js

    case KEY.TAB:
    case KEY.RETURN:
    //case KEY.COMMA:
    case KEY.SPACE:
    if (selected_dropdown_item) {
    add_token($(selected_dropdown_item));
Sign In or Register to comment.