Add year to quick search results

This commit is contained in:
Devin Buhl 2017-01-19 19:56:26 -05:00
commit 3ab3e66853

View file

@ -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()
}); });