blob: 6accd89cc809445aca7dd51a00aebf2d033549c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
ClipPlay.Views.SampleEditor = Marionette.CollectionView.extend({
itemView: ClipPlay.Views.Sample,
onRender: function() {
// Initialize view for adding new samples
this.sample_add_view = new ClipPlay.Views.SampleAddView({
el: $('#add-sample'),
collection: this.collection
});
}
});
|