New: Mass series editor

This commit is contained in:
Mark McDowall 2013-12-08 21:25:27 -08:00
parent f76c4700a6
commit a9ece10144
26 changed files with 606 additions and 34 deletions

View file

@ -12,7 +12,8 @@ define(
'Release/ReleaseLayout',
'System/SystemLayout',
'SeasonPass/SeasonPassLayout',
'System/Update/UpdateLayout'
'System/Update/UpdateLayout',
'Series/Editor/SeriesEditorLayout'
], function (NzbDroneController,
AppLayout,
Marionette,
@ -24,7 +25,8 @@ define(
ReleaseLayout,
SystemLayout,
SeasonPassLayout,
UpdateLayout) {
UpdateLayout,
SeriesEditorLayout) {
return NzbDroneController.extend({
addSeries: function (action) {
@ -72,7 +74,13 @@ define(
update: function () {
this.setTitle('Updates');
this.showMainRegion(new UpdateLayout());
},
seriesEditor: function () {
this.setTitle('Series Editor');
this.showMainRegion(new SeriesEditorLayout());
}
});
});