Skip to content

Commit

Permalink
Autocomplete: code improvements for multiple demo
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Apr 15, 2010
1 parent 5c55462 commit cddf2a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions demos/autocomplete/multiple.html
Expand Up @@ -16,7 +16,7 @@
return val.split(/,\s*/);
}
function extractLast(term) {
return split(term)[split(term).length - 1];
return split(term).pop();
}

$("#birds").autocomplete({
Expand All @@ -27,7 +27,7 @@
},
search: function() {
// custom minLength
var term = extractLast($(this).val());
var term = extractLast(this.value);
if (term.length < 2) {
return false;
}
Expand All @@ -37,14 +37,14 @@
return false;
},
select: function(event, ui) {
var terms = split( $(this).val() );
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push("");
$(this).val( terms.join(", ") );
this.value = terms.join(", ");
return false;
}
});
Expand Down

0 comments on commit cddf2a4

Please sign in to comment.