More notificationUI changes, start notification updates

This commit is contained in:
Mark McDowall 2013-05-20 23:16:19 -07:00
commit 63f2ba7f77
16 changed files with 188 additions and 78 deletions

View file

@ -16,16 +16,16 @@ define([
},
events: {
'click .x-edit' : 'editSeries',
'click .x-remove': 'removeSeries'
'click .x-edit' : 'edit',
'click .x-remove': 'remove'
},
editSeries: function () {
edit: function () {
var view = new NzbDrone.Settings.Quality.Profile.EditQualityProfileView({ model: this.model});
NzbDrone.modalRegion.show(view);
},
removeSeries: function () {
remove: function () {
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
NzbDrone.modalRegion.show(view);
}