mail/src/js/view/compose-view.js

16 lines
271 B
JavaScript
Raw Normal View History

(function() {
'use strict';
2013-03-13 11:58:46 -04:00
app.view.ComposeView = Backbone.View.extend({
2013-03-13 11:58:46 -04:00
initialize: function() {
this.template = _.template(app.util.tpl.get('compose'));
},
2013-03-13 11:58:46 -04:00
render: function(eventName) {
$(this.el).html(this.template());
return this;
}
});
}());