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

13 lines
270 B
JavaScript
Raw Normal View History

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