mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
27 lines
647 B
JavaScript
27 lines
647 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'AppLayout',
|
|
'marionette',
|
|
'Settings/Indexers/Edit/IndexerEditView'
|
|
], function (AppLayout, Marionette, EditView) {
|
|
|
|
return Marionette.ItemView.extend({
|
|
template: 'Settings/Indexers/IndexerItemViewTemplate',
|
|
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);
|
|
}
|
|
});
|
|
});
|