I am using Marionette's CollectionView
to render a list of items with ItemViews
. Whenever a new item is added, I want to run a short fade-in animation. But not when the collection is rendered initially (or the collection is reset).
Before using Marionette, I handled the reset
and add
events slightly differently, but I can not figure out how to do this here. I looked at the source code and it seems that addItemView
is responsible for adding the child view and both addChildView
(called when add
is triggered on the collection) and render
(for reset
events) call this method.
Maybe I am missing something obvious.