I have a CompositeView where I fetch its collection on initialize.
initialize: function() {
this.collection = this.model.things;
this.collection.fetch();
},
How do I not render this composite view if its collection is empty?
I'm aware of the EmptyView, but that still renders the composite view's template. I want to not render anything if the collection is empty.