Skip to content
This repository was archived by the owner on Sep 10, 2023. It is now read-only.

Commit e5fc568

Browse files
committed
Fix for #49 ("Arrows keys in IE8...")
Fixes the issue by taking kuroir's suggestion of preventing the default action. To be consistent with the rest of the code, we do this by returning false in the event handler.
1 parent 526a22e commit e5fc568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jquery.tokeninput.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,8 @@ $.TokenList = function (input, url_or_data, settings) {
248248
if(dropdown_item.length) {
249249
select_dropdown_item(dropdown_item);
250250
}
251-
return false;
252251
}
252+
return false;
253253
break;
254254

255255
case KEY.BACKSPACE:

0 commit comments

Comments
 (0)