1
0
Fork 0
arangodb/html/admin/js/views/footerView.js

14 lines
248 B
JavaScript

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