Add year to quick search results

Devin Buhl 8 years ago
parent 40ca469339
commit 3ab3e66853

@ -25,7 +25,9 @@ $.fn.bindSearch = function() {
minLength : 1 minLength : 1
}, { }, {
name : 'series', name : 'series',
displayKey : 'title', displayKey : function(series) {
return series.title + ' (' + series.year + ')';
},
source : substringMatcher() source : substringMatcher()
}); });

Loading…
Cancel
Save