Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
gosukiwi committed Jul 4, 2014
1 parent 65d6fb4 commit 758ed89
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 758ed89

Please sign in to comment.