Skip to content

Instantly share code, notes, and snippets.

@mxriverlynn
Created August 31, 2011 02:53
Show Gist options
  • Save mxriverlynn/1182708 to your computer and use it in GitHub Desktop.
Save mxriverlynn/1182708 to your computer and use it in GitHub Desktop.
more than just backbone constructs
AppView = Backbone.View.extend({
initialize: function(){
this.router = new AppRouter();
this.collection = new MyCollection();
this.someView = new SomeView();
this.someView.render();
Backbone.history.start();
}
});
function MyApp(){
var router = new MyRouter();
var myCollection = new MyCollection();
var someView = new SomeView({collection: myCollection});
this.start = function(initialModels){
myCollection.reset(initialModels);
someView.render();
Backbone.history.start();
}
}
var someModels = [...];
new MyApp().start(someModels);
// simple, object literal event thingy
var myThingy = _.extend({}, Backbone.Events);
// or a full object
function MyThingy(){
_.extend(MyThingy.prototype, Backbone.Events);
// other stuff here
}
var myThingy = new myThingy();
// use events!
myThingy.trigger("some:event");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment