1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Added search bar under nav bar to jump to series by searching

This commit is contained in:
Mark McDowall
2013-09-22 00:55:44 -07:00
parent 8ff34aac4d
commit 48dbc127a7
6 changed files with 98 additions and 33 deletions

View File

@@ -41,14 +41,13 @@ define(
},
initialize: function () {
$('body').addClass('backdrop');
this.listenTo(this.model, 'change:monitored', this._setMonitoredState);
this.listenTo(App.vent, App.Events.SeriesDeleted, this._onSeriesDeleted);
this.listenTo(App.vent, App.Events.SeasonRenamed, this._onSeasonRenamed);
},
onShow: function () {
$('body').addClass('backdrop');
var fanArt = this._getFanArt();
if (fanArt) {
@@ -61,8 +60,6 @@ define(
this._showSeasons();
this._setMonitoredState();
this._showInfo();
},
onRender: function () {