fixed add series.
This commit is contained in:
parent
951e083756
commit
1f94e2b55f
|
@ -13,6 +13,8 @@ define([
|
||||||
|
|
||||||
addSeries:function () {
|
addSeries:function () {
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
|
||||||
var seriesId = this.model.get('id');
|
var seriesId = this.model.get('id');
|
||||||
var title = this.model.get('seriesName');
|
var title = this.model.get('seriesName');
|
||||||
var quality = this.options.qualityProfile.val();
|
var quality = this.options.qualityProfile.val();
|
||||||
|
@ -25,23 +27,10 @@ define([
|
||||||
path:path
|
path:path
|
||||||
});
|
});
|
||||||
|
|
||||||
var self = this;
|
|
||||||
|
|
||||||
var seriesCollection = new NzbDrone.Series.SeriesCollection();
|
var seriesCollection = new NzbDrone.Series.SeriesCollection();
|
||||||
|
seriesCollection.add(model);
|
||||||
|
|
||||||
seriesCollection.add(model, {success:function () {
|
|
||||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
|
||||||
title:'Added',
|
|
||||||
message:title,
|
|
||||||
level:'success'
|
|
||||||
});
|
|
||||||
|
|
||||||
notificationCollection.push(notificationModel);
|
|
||||||
self.close();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return;
|
|
||||||
model.save(undefined, {
|
model.save(undefined, {
|
||||||
success:function () {
|
success:function () {
|
||||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
define(['app','Shared/NotificationCollection', 'AddSeries/SearchResultCollection', 'AddSeries/SearchResultModel', 'Series/SeriesModel'], function (app,notificationCollection) {
|
define(['app','Shared/NotificationCollection', 'AddSeries/SearchResultCollection', 'AddSeries/SearchResultModel', 'Series/SeriesCollection'], function (app,notificationCollection) {
|
||||||
|
|
||||||
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
|
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
|
||||||
|
|
||||||
|
@ -41,6 +41,9 @@ define(['app','Shared/NotificationCollection', 'AddSeries/SearchResultCollection
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
var seriesCollection = new NzbDrone.Series.SeriesCollection();
|
||||||
|
seriesCollection.push(model);
|
||||||
|
|
||||||
model.save(undefined, {
|
model.save(undefined, {
|
||||||
success: function () {
|
success: function () {
|
||||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
||||||
|
|
Loading…
Reference in New Issue