You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/UI/Settings/ThingyAddCollectionView.js

13 lines
353 B

9 years ago
var Marionette = require('marionette');
9 years ago
module.exports = Marionette.CompositeView.extend({
itemViewOptions : function() {
return {
targetCollection : this.targetCollection || this.options.targetCollection
};
9 years ago
},
initialize : function(options) {
9 years ago
this.targetCollection = options.targetCollection;
}
});