mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
24 lines
724 B
JavaScript
24 lines
724 B
JavaScript
/// <reference path="../app.js" />
|
|
/// <reference path="AddNewSeries/AddNewSeriesView.js" />
|
|
|
|
NzbDrone.AddSeries.AddSeriesLayout = Backbone.Marionette.Layout.extend({
|
|
template: "AddSeries/addSeriesLayoutTemplate",
|
|
|
|
regions: {
|
|
addNew: "#add-new",
|
|
importExisting: "#import-existing",
|
|
rootFolders: "#root-folders"
|
|
},
|
|
|
|
onRender: function () {
|
|
this.$('#myTab a').click(function (e) {
|
|
e.preventDefault();
|
|
$(this).tab('show');
|
|
});
|
|
|
|
this.addNew.show(new NzbDrone.AddSeries.AddNewSeriesView());
|
|
//this.importExisting.show(new NzbDrone.ImportExistingView());
|
|
//this.rootFolders.show(new NzbDrone.RootFoldersView());
|
|
},
|
|
|
|
}); |