Lidarr/UI/Settings/Notifications/ItemView.js

31 lines
891 B
JavaScript
Raw Normal View History

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