Fixed up notifications edit

This commit is contained in:
Mark McDowall 2013-05-29 00:20:41 -07:00
parent 23695b3fe8
commit 0725dcee73
2 changed files with 18 additions and 5 deletions

View file

@ -2,7 +2,8 @@
define([
'app',
'Settings/Notifications/Model'
'Settings/Notifications/Model',
'Settings/Notifications/DeleteView'
], function () {
@ -10,14 +11,15 @@ define([
template : 'Settings/Notifications/EditTemplate',
events: {
'click .x-save': 'save'
'click .x-save': '_saveNotification',
'click .x-remove': '_deleteNotification'
},
initialize: function (options) {
this.notificationCollection = options.notificationCollection;
},
save: function () {
_saveNotification: function () {
var name = this.model.get('name');
var success = 'Notification Saved: ' + name;
var fail = 'Failed to save notification: ' + name;
@ -25,6 +27,11 @@ define([
this.model.save(undefined, this.syncNotification(success, fail, this));
},
_deleteNotification: function () {
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model });
NzbDrone.modalRegion.show(view);
},
syncNotification: function (success, error, context) {
return {
success: function () {