Add year to quick search results

pull/2/head
Devin Buhl 8 years ago
parent 40ca469339
commit 3ab3e66853

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

Loading…
Cancel
Save