mirror of https://github.com/lidarr/Lidarr
added views for all different add methods.
This commit is contained in:
parent
85fa96f436
commit
936886f213
|
@ -1,3 +1,11 @@
|
|||
NzbDrone.AddSeriesView = Backbone.Marionette.ItemView.extend({
|
||||
template: "#add-series-template"
|
||||
});
|
||||
|
||||
NzbDrone.AddNewSeriesView = Backbone.Marionette.ItemView.extend({
|
||||
template: "#add-new-series-template"
|
||||
});
|
||||
|
||||
NzbDrone.AddExistingSeriesView = Backbone.Marionette.ItemView.extend({
|
||||
template: "#add-existing-series-template"
|
||||
});
|
|
@ -3,18 +3,15 @@
|
|||
NzbDrone.Controller = {
|
||||
|
||||
AddSeries: function () {
|
||||
|
||||
var view = new NzbDrone.AddSeriesView();
|
||||
NzbDrone.mainRegion.show(view);
|
||||
NzbDrone.mainRegion.show(new NzbDrone.AddSeriesView());
|
||||
},
|
||||
|
||||
AddNewSeries: function () {
|
||||
alert("AddNewSeries");
|
||||
NzbDrone.mainRegion.show(new NzbDrone.AddNewSeriesView());
|
||||
},
|
||||
|
||||
|
||||
|
||||
AddExistingSeries: function () {
|
||||
alert("AddExistingSeries");
|
||||
NzbDrone.mainRegion.show(new NzbDrone.AddExistingSeriesView());
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -6,7 +6,13 @@
|
|||
<body>
|
||||
<div style="display: none">
|
||||
<div id="add-series-template">
|
||||
<h1>Add new series</h1>
|
||||
<h1>Add</h1>
|
||||
</div>
|
||||
<div id="add-existing-series-template">
|
||||
<h1>Add Existing</h1>
|
||||
</div>
|
||||
<div id="add-new-series-template">
|
||||
<h1>Add New</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue