You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1016 B
37 lines
1016 B
'use strict';
|
|
define(
|
|
[
|
|
'app',
|
|
'Series/SeriesCollection'
|
|
], function (App, SeriesCollection) {
|
|
$(document).on('keydown', function (e){
|
|
if ($(e.target).is('input')) {
|
|
return;
|
|
}
|
|
|
|
if (e.keyCode === 84) {
|
|
$('.x-series-search').focus();
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
$.fn.bindSearch = function () {
|
|
$(this).typeahead({
|
|
source : function () {
|
|
return SeriesCollection.pluck('title');
|
|
},
|
|
|
|
sorter: function (items) {
|
|
return items.sort();
|
|
},
|
|
|
|
updater: function (item) {
|
|
var series = SeriesCollection.findWhere({ title: item });
|
|
|
|
this.$element.blur();
|
|
App.Router.navigate('/series/{0}'.format(series.get('titleSlug')), { trigger: true });
|
|
}
|
|
});
|
|
};
|
|
});
|