mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
rjs -> webpack
This commit is contained in:
@@ -1,29 +1,17 @@
|
||||
'use strict';
|
||||
var Marionette = require('marionette');
|
||||
var ItemView = require('./NotificationItemView');
|
||||
var SchemaModal = require('./Add/NotificationSchemaModal');
|
||||
|
||||
define([
|
||||
'marionette',
|
||||
'Settings/Notifications/NotificationItemView',
|
||||
'Settings/Notifications/Add/NotificationSchemaModal'
|
||||
], function (Marionette, ItemView, SchemaModal) {
|
||||
return Marionette.CompositeView.extend({
|
||||
itemView : ItemView,
|
||||
itemViewContainer: '.notification-list',
|
||||
template : 'Settings/Notifications/NotificationCollectionViewTemplate',
|
||||
|
||||
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);
|
||||
}
|
||||
});
|
||||
});
|
||||
module.exports = Marionette.CompositeView.extend({
|
||||
itemView : ItemView,
|
||||
itemViewContainer : '.notification-list',
|
||||
template : 'Settings/Notifications/NotificationCollectionViewTemplate',
|
||||
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);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user