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

Commit b5f827c

Browse files
committed
Add missing semicolon.
1 parent fe5ad94 commit b5f827c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/jquery.tokeninput.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@
286286
previous_token = input_token.prev();
287287
next_token = input_token.next();
288288

289-
if((previous_token.length && previous_token.get(0) === selected_token) ||
289+
if((previous_token.length && previous_token.get(0) === selected_token) ||
290290
(next_token.length && next_token.get(0) === selected_token)) {
291291
// Check if there is a previous/next token and it is selected
292292
if(event.keyCode === KEY.LEFT || event.keyCode === KEY.UP) {
@@ -673,7 +673,7 @@
673673
if($(input).data("settings").tokenLimit == null || token_count < $(input).data("settings").tokenLimit) {
674674
insert_token(item);
675675
// Remove the placeholder so it's not seen after you've added a token
676-
input_box.attr("placeholder", null)
676+
input_box.attr("placeholder", null);
677677
checkTokenLimit();
678678
}
679679

@@ -1072,7 +1072,7 @@
10721072
setTimeout(
10731073
function() {
10741074
object.focus();
1075-
},
1075+
},
10761076
50
10771077
);
10781078
}

0 commit comments

Comments
 (0)