Skip to content

Commit

Permalink
Merge pull request aehlke#212 from sonots/fix_autocomplete_lt
Browse files Browse the repository at this point in the history
Fix to prevent autocomplete from being triggered when < is pressed
  • Loading branch information
aehlke committed Oct 12, 2013
2 parents 16b283e + 3f4d93c commit e3d5bac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tag-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@
// Tab will also create a tag, unless the tag input is empty,
// in which case it isn't caught.
if (
event.which === $.ui.keyCode.COMMA ||
(event.which === $.ui.keyCode.COMMA && event.shiftKey === false) ||
event.which === $.ui.keyCode.ENTER ||
(
event.which == $.ui.keyCode.TAB &&
Expand Down

0 comments on commit e3d5bac

Please sign in to comment.