We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c0147b commit 9f18de3Copy full SHA for 9f18de3
docs/events.class.md
@@ -271,9 +271,9 @@ const MyCollectionView = CollectionView.extend({
271
onBeforeFilter(myCollectionView) {
272
console.log('Nothing has changed yet!');
273
},
274
- onFilter(myCollectionView, attachViews, detachedView) {
275
- console.log('Array of attached views', attachedView);
276
- console.log('Array of detached views', attachedView);
+ onFilter(myCollectionView, attachedViews, detachedViews) {
+ console.log('Array of attached views', attachedViews);
+ console.log('Array of detached views', detachedViews);
277
}
278
});
279
```
0 commit comments