2011-04-15 18:55:37 +00:00
|
|
|
var <%= object_name %>View = Backbone.View.extend({
|
2011-04-16 14:39:18 +00:00
|
|
|
template: JST['<%= underscore_name %>s/view'],
|
2011-04-15 18:55:37 +00:00
|
|
|
initialize: function() {
|
|
|
|
_.bindAll(this, 'render');
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
$(this.el).html(this.template());
|
2011-04-15 20:14:18 +00:00
|
|
|
return this;
|
2011-04-15 18:55:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|