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.
25 lines
580 B
25 lines
580 B
var AppLayout = require('../../AppLayout');
|
|
var Marionette = require('marionette');
|
|
var EditView = require('./Edit/IndexerEditView');
|
|
|
|
module.exports = Marionette.ItemView.extend({
|
|
template : 'Settings/NetImport/NetImportItemViewTemplate',
|
|
tagName : 'li',
|
|
|
|
events : {
|
|
'click' : '_edit'
|
|
},
|
|
|
|
initialize : function() {
|
|
this.listenTo(this.model, 'sync', this.render);
|
|
},
|
|
|
|
_edit : function() {
|
|
var view = new EditView({
|
|
model : this.model,
|
|
targetCollection : this.model.collection
|
|
});
|
|
AppLayout.modalRegion.show(view);
|
|
}
|
|
});
|