mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
30 lines
813 B
JavaScript
30 lines
813 B
JavaScript
'use strict';
|
|
define([
|
|
'app',
|
|
'marionette',
|
|
'Settings/Notifications/ItemView',
|
|
'Settings/Notifications/SchemaModal'
|
|
], function (App, Marionette, NotificationItemView, SchemaModal) {
|
|
return Marionette.CompositeView.extend({
|
|
itemView : NotificationItemView,
|
|
itemViewContainer: '.notifications',
|
|
template : 'Settings/Notifications/CollectionTemplate',
|
|
|
|
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);
|
|
}
|
|
});
|
|
});
|