renamed remove methods in QualityProfile, Notification

This commit is contained in:
kay.one 2013-05-22 19:39:28 -07:00
commit 4b5b0ad751
3 changed files with 4 additions and 35 deletions

View file

@ -17,7 +17,7 @@ define([
events: {
'click .x-edit' : 'edit',
'click .x-remove': 'remove'
'click .x-remove': 'removeQuality'
},
edit: function () {
@ -25,7 +25,7 @@ define([
NzbDrone.modalRegion.show(view);
},
remove: function () {
removeQuality: function () {
var view = new NzbDrone.Series.Delete.DeleteSeriesView({ model: this.model });
NzbDrone.modalRegion.show(view);
}