We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e637a1c commit 3c9c2bcCopy full SHA for 3c9c2bc
src/jquery.tokeninput.js
@@ -322,7 +322,6 @@
322
select_dropdown_item(dropdown_item);
323
}
324
325
- return false;
326
break;
327
328
case KEY.BACKSPACE:
@@ -582,13 +581,6 @@
582
581
Math.max(width_left, input_resizer.width() + 30)));
583
584
585
- function is_printable_character(keycode) {
586
- return ((keycode >= 48 && keycode <= 90) || // 0-1a-z
587
- (keycode >= 96 && keycode <= 111) || // numpad 0-9 + - / * .
588
- (keycode >= 186 && keycode <= 192) || // ; = , - . / ^
589
- (keycode >= 219 && keycode <= 222)); // ( \ ) '
590
- }
591
-
592
function add_freetagging_tokens() {
593
var value = $.trim(input_box.val());
594
var tokens = value.split($(input).data("settings").tokenDelimiter);
0 commit comments