Skip to content

Commit

Permalink
Merge pull request aehlke#268 from gosukiwi/patch-1
Browse files Browse the repository at this point in the history
Fix missing semicolon
  • Loading branch information
aehlke committed Jul 4, 2014
2 parents 65d6fb4 + 758ed89 commit 1d84585
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 @@ -297,7 +297,7 @@
this.tagInput.autocomplete(autocompleteOptions).bind('autocompleteopen.tagit', function(event, ui) {
that.tagInput.data('autocomplete-open', true);
}).bind('autocompleteclose.tagit', function(event, ui) {
that.tagInput.data('autocomplete-open', false)
that.tagInput.data('autocomplete-open', false);
});

this.tagInput.autocomplete('widget').addClass('tagit-autocomplete');
Expand Down

0 comments on commit 1d84585

Please sign in to comment.