1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

added ui structure for rootdirs.

This commit is contained in:
Keivan Beigi
2013-01-24 12:48:44 -08:00
committed by kay.one
parent ae61150b84
commit 157b559ed2
12 changed files with 133 additions and 8 deletions
@@ -1,5 +1,6 @@
/// <reference path="../app.js" />
/// <reference path="AddNewSeries/AddNewSeriesView.js" />
/// <reference path="RootDir/RootDirView.js" />
NzbDrone.AddSeries.AddSeriesLayout = Backbone.Marionette.Layout.extend({
template: "AddSeries/addSeriesLayoutTemplate",
@@ -18,7 +19,7 @@ NzbDrone.AddSeries.AddSeriesLayout = Backbone.Marionette.Layout.extend({
this.addNew.show(new NzbDrone.AddSeries.AddNewSeriesView());
//this.importExisting.show(new NzbDrone.ImportExistingView());
//this.rootFolders.show(new NzbDrone.RootFoldersView());
this.rootFolders.show(new NzbDrone.AddSeries.RootDirView());
},
});