Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Rehfeld committed May 20, 2010
1 parent 833af06 commit ee19120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tag-it.js
Expand Up @@ -88,7 +88,7 @@

tag_input.autocomplete({
source: function(search, show_choices){
var filter = new RegExp(search.term, "i")
var filter = new RegExp(search.term, "i");
var choices = options.availableTags.filter(function(element) {
return (element.search(filter) != -1);
});
Expand Down

0 comments on commit ee19120

Please sign in to comment.