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.
38 lines
978 B
38 lines
978 B
'use strict';
|
|
|
|
define([
|
|
'app',
|
|
'marionette',
|
|
'Settings/Notifications/EditView'
|
|
], function (App, Marionette, EditView) {
|
|
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/Notifications/AddItemTemplate',
|
|
tagName : 'li',
|
|
|
|
events: {
|
|
'click': 'addNotification'
|
|
},
|
|
|
|
initialize: function (options) {
|
|
this.notificationCollection = options.notificationCollection;
|
|
},
|
|
|
|
addNotification: function (e) {
|
|
if ($(e.target).hasClass('icon-info-sign')) {
|
|
return;
|
|
}
|
|
|
|
this.model.set({
|
|
id: undefined,
|
|
name: this.model.get('implementationName'),
|
|
onGrab: true,
|
|
onDownload: true
|
|
});
|
|
|
|
var editView = new EditView({ model: this.model, notificationCollection: this.notificationCollection });
|
|
App.modalRegion.show(editView);
|
|
}
|
|
});
|
|
});
|