You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
785 B
31 lines
785 B
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'marionette',
|
|
'Settings/Notifications/EditView',
|
|
'Settings/Notifications/DeleteView'
|
|
|
|
], function (App, Marionette, EditView, DeleteView) {
|
|
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/Notifications/ItemTemplate',
|
|
tagName : 'tr',
|
|
|
|
events: {
|
|
'click .x-edit' : 'edit',
|
|
'click .x-delete': 'deleteNotification'
|
|
},
|
|
|
|
edit: function () {
|
|
var view = new EditView({ model: this.model, notificationCollection: this.model.collection});
|
|
App.modalRegion.show(view);
|
|
},
|
|
|
|
deleteNotification: function () {
|
|
var view = new DeleteView({ model: this.model});
|
|
App.modalRegion.show(view);
|
|
}
|
|
});
|
|
});
|