renamed remove methods in QualityProfile, Notification

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

View file

@ -13,7 +13,7 @@ define([
events: {
'click .x-edit' : 'edit',
'click .x-remove': 'remove'
'click .x-remove': 'removeNotification'
},
edit: function () {
@ -21,7 +21,7 @@ define([
NzbDrone.modalRegion.show(view);
},
remove: function () {
removeNotification: function () {
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model});
NzbDrone.modalRegion.show(view);
}