Skip to content

Instantly share code, notes, and snippets.

View elving's full-sized avatar
🚀

Elving Rodríguez elving

🚀
View GitHub Profile
@elving
elving / collection_view.js
Created April 15, 2013 00:06
A simple Backbone.View that renders a collection.
Backbone.CollectionView = Backbone.View.extend({
itemView: Backbone.View.extend(),
collection: Backbone.Collection.extend(),
fragment: document.createDocumentFragment(),
isRendered: false,
initialize: function() {