Skip to content

Instantly share code, notes, and snippets.

View KingAndrew's full-sized avatar

Andrew Boyd KingAndrew

View GitHub Profile
namespace.views.MyWizard = Backbone.Views.extend({
initialize: function() {
_.bindAll(this, 'render', 'wizardMethod');
}
render: function() {
this.wizardMethod();
return this;
},