1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00
Radarr/UI/Settings/Notifications/ItemView.js

30 lines
803 B
JavaScript
Raw Normal View History

2013-05-20 06:19:54 +02:00
"use strict";
define([
'app',
'Settings/Notifications/Collection',
'Settings/Notifications/EditView'
2013-05-20 06:19:54 +02:00
], function () {
NzbDrone.Settings.Notifications.ItemView = Backbone.Marionette.ItemView.extend({
template : 'Settings/Notifications/ItemTemplate',
tagName: 'tr',
2013-05-20 06:19:54 +02:00
events: {
'click .x-edit' : 'edit',
'click .x-remove': 'removeNotification'
2013-05-20 06:19:54 +02:00
},
edit: function () {
var view = new NzbDrone.Settings.Notifications.EditView({ model: this.model});
NzbDrone.modalRegion.show(view);
},
2013-05-20 06:19:54 +02:00
removeNotification: function () {
var view = new NzbDrone.Settings.Notifications.DeleteView({ model: this.model});
NzbDrone.modalRegion.show(view);
2013-05-20 06:19:54 +02:00
}
});
});