autocomplete, continued
This commit is contained in:
parent
27cc14db36
commit
ab6468cae1
|
@ -1574,8 +1574,9 @@ requires
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function autocomplete(items) {
|
function autocomplete(items) {
|
||||||
var selected = -1;
|
var selected;
|
||||||
if (items.length) {
|
if (items.length) {
|
||||||
|
selected = items.length == 1 ? 0 : -1;
|
||||||
items = $.map(items, function(title, position) {
|
items = $.map(items, function(title, position) {
|
||||||
if (that.val().toLowerCase() == title.toLowerCase()) {
|
if (that.val().toLowerCase() == title.toLowerCase()) {
|
||||||
selected = position;
|
selected = position;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user