Fix: Added loading spinner to all autocomplete lists, better list text color

This commit is contained in:
kay.one
2012-03-01 18:37:43 -08:00
parent f651c0e23d
commit f56358067d
4 changed files with 20 additions and 19 deletions

View File

@@ -65,7 +65,7 @@ function bindSeriesAutoComplete(selector) {
.data("autocomplete")._renderItem = function (ul, item) {
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a><div class=seriesLookupTitle>" + item.DisplayedTitle + "</div></a>")
.append("<a>" + item.DisplayedTitle + "</a>")
.appendTo(ul);
};
});