pluck and findWhere, not map and find
This commit is contained in:
parent
ca3b4cb1d7
commit
1a2ae4bd2c
|
@ -7,9 +7,7 @@ define(
|
||||||
$.fn.bindSearch = function () {
|
$.fn.bindSearch = function () {
|
||||||
$(this).typeahead({
|
$(this).typeahead({
|
||||||
source : function () {
|
source : function () {
|
||||||
return SeriesCollection.map(function (model) {
|
return SeriesCollection.pluck('title');
|
||||||
return model.get('title');
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
sorter: function (items) {
|
sorter: function (items) {
|
||||||
|
@ -17,9 +15,7 @@ define(
|
||||||
},
|
},
|
||||||
|
|
||||||
updater: function (item) {
|
updater: function (item) {
|
||||||
var series = SeriesCollection.find(function (model) {
|
var series = SeriesCollection.findWhere({ title: item });
|
||||||
return model.get('title') === item;
|
|
||||||
});
|
|
||||||
|
|
||||||
this.$element.blur();
|
this.$element.blur();
|
||||||
App.Router.navigate('/series/{0}'.format(series.get('titleSlug')), { trigger: true });
|
App.Router.navigate('/series/{0}'.format(series.get('titleSlug')), { trigger: true });
|
||||||
|
|
Loading…
Reference in New Issue