TheTvDb link is now an icon on AddSeries.

This commit is contained in:
Mark McDowall 2012-03-03 10:58:32 -08:00
commit 0ba781fd32
4 changed files with 9 additions and 2 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>" + item.DisplayedTitle + "<div class='tvDbLink'>" + item.Url + "</div></a>")
.append("<a>" + item.DisplayedTitle + "<div class='tvDbLink' rel='" + item.Url + "'></div></a>")
.appendTo(ul);
};
});