1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/view/accounts-view.js

16 lines
273 B
JavaScript
Raw Normal View History

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