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

Commit 2d1958c

Browse files
committed
Merge pull request #420 from farcepest/fix-unterminated
Terminate unterminated statements.
2 parents a7750fa + ec2d0b6 commit 2d1958c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/jquery.tokeninput.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ var methods = {
168168
$(this).data("settings", $.extend({}, $(this).data("settings"), options || {}));
169169
return this;
170170
}
171-
}
171+
};
172172

173173
// Expose the .tokenInput function to jQuery as a plugin
174174
$.fn.tokenInput = function (method) {
@@ -471,11 +471,11 @@ $.TokenList = function (input, url_or_data, settings) {
471471
delete_token($(this));
472472
}
473473
});
474-
}
474+
};
475475

476476
this.add = function(item) {
477477
add_token(item);
478-
}
478+
};
479479

480480
this.remove = function(item) {
481481
token_list.children("li").each(function() {
@@ -493,15 +493,15 @@ $.TokenList = function (input, url_or_data, settings) {
493493
}
494494
}
495495
});
496-
}
496+
};
497497

498498
this.getTokens = function() {
499499
return saved_tokens;
500-
}
500+
};
501501

502502
this.toggleDisabled = function(disable) {
503503
toggleDisabled(disable);
504-
}
504+
};
505505

506506
//
507507
// Private functions

0 commit comments

Comments
 (0)