Skip to content

Commit

Permalink
Fix incorrect collectionView docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Aug 26, 2014
1 parent e86c7d8 commit 61e3117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/marionette.collectionview.md
Expand Up @@ -713,11 +713,11 @@ Backbone.Marionette.CollectionView.extend({
},

// Called after all children have been appended into the elBuffer
appendHtml: function(collectionView, buffer) {
attachBuffer: function(collectionView, buffer) {
collectionView.$el.append(buffer);
},

// called on initialize and after appendHtml is called
// called on initialize and after attachBuffer is called
initRenderBuffer: function() {
this.elBuffer = document.createDocumentFragment();
}
Expand Down

0 comments on commit 61e3117

Please sign in to comment.