mirror of
https://github.com/Readarr/Readarr
synced 2025-12-21 15:53:38 +01:00
25 lines
No EOL
728 B
JavaScript
25 lines
No EOL
728 B
JavaScript
var Marionette = require('marionette');
|
|
var ItemView = require('./DownloadClientItemView');
|
|
var SchemaModal = require('./Add/DownloadClientSchemaModal');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
itemView : ItemView,
|
|
itemViewContainer : '.download-client-list',
|
|
template : 'Settings/DownloadClient/DownloadClientCollectionViewTemplate',
|
|
|
|
ui : {
|
|
'addCard' : '.x-add-card'
|
|
},
|
|
|
|
events : {
|
|
'click .x-add-card' : '_openSchemaModal'
|
|
},
|
|
|
|
appendHtml : function(collectionView, itemView, index) {
|
|
collectionView.ui.addCard.parent('li').before(itemView.el);
|
|
},
|
|
|
|
_openSchemaModal : function() {
|
|
SchemaModal.open(this.collection);
|
|
}
|
|
}); |