mirror of
https://github.com/moparisthebest/mail
synced 2025-02-13 05:30:21 -05:00
16 lines
273 B
JavaScript
16 lines
273 B
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
app.view.AccountsView = Backbone.View.extend({
|
|
|
|
initialize: function() {
|
|
this.template = _.template(app.util.tpl.get('accounts'));
|
|
},
|
|
|
|
render: function(eventName) {
|
|
$(this.el).html(this.template());
|
|
return this;
|
|
}
|
|
});
|
|
|
|
}()); |