Skip to content

Instantly share code, notes, and snippets.

@code-for-coffee
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-for-coffee/d0871718dbaff478286d to your computer and use it in GitHub Desktop.
Save code-for-coffee/d0871718dbaff478286d to your computer and use it in GitHub Desktop.
Backbone Enterprise Practices Ch3 #1
App = new Object() || {};
App.Models = new Object() || {};
App.Collections = new Object() || {};
App.Views = new Object() || {};
App.Models.TableRow = Backbone.Model.extend({
});
App.Collections.Table = Backbone.Collection.extend({
});
App.Views.Table = Backbone.View.extend({
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment