1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Added search button/menu to series details grid

Also fixed some names to make name navigation easier.
This commit is contained in:
Mark McDowall
2013-09-18 22:49:15 -07:00
parent 4a3410f85a
commit 7320342123
11 changed files with 120 additions and 11 deletions
@@ -12,7 +12,7 @@ define(
], function (App, Marionette, ButtonsView, ManualSearchLayout, ReleaseCollection, SeriesCollection,CommandController, LoadingView) {
return Marionette.Layout.extend({
template: 'Episode/Search/LayoutTemplate',
template: 'Episode/Search/EpisodeSearchLayoutTemplate',
regions: {
main: '#episode-search-region'
@@ -29,7 +29,13 @@ define(
},
onShow: function () {
this._showMainView();
if (this.startManualSearch) {
this._searchManual();
}
else {
this._showMainView();
}
},
_searchAuto: function (e) {