1
0
Fork 0
arangodb/js/apps/system/aardvark/frontend/js/views/applicationDetailView.js

19 lines
439 B
JavaScript

/*jshint browser: true */
/*jshint strict: false, unused: false */
/*global Backbone, $, window, arangoHelper, templateEngine, Joi, _*/
window.ApplicationDetailView = Backbone.View.extend({
el: '#content',
template: templateEngine.createTemplate('applicationDetailView.ejs'),
events: {
},
render: function() {
console.log(this.model);
$(this.el).html(this.template.render(this.model));
return $(this.el);
}
});