mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-13 07:23:14 +00:00
25 lines
No EOL
693 B
JavaScript
25 lines
No EOL
693 B
JavaScript
var Marionette = require('marionette');
|
|
var ItemView = require('./IndexerItemView');
|
|
var SchemaModal = require('./Add/IndexerSchemaModal');
|
|
|
|
module.exports = Marionette.CompositeView.extend({
|
|
itemView : ItemView,
|
|
itemViewContainer : '.indexer-list',
|
|
template : 'Settings/Indexers/IndexerCollectionViewTemplate',
|
|
|
|
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);
|
|
}
|
|
}); |