1
0
Fork 0
arangodb/frontend/js/views/dashboardView.js

14 lines
255 B
JavaScript

var dashboardView = Backbone.View.extend({
el: '#content',
init: function () {
},
template: new EJS({url: '/_admin/html/js/templates/dashboardView.ejs'}),
render: function() {
$(this.el).html(this.template.text);
return this;
}
});