1 /*global View render_template panels */
2 var HTMLView = View.extend({
5 template: 'html-view-template',
7 init: function(element, model, template) {
8 this.element = $(element);
10 this.template = template || this.template;
11 this.element.html(render_template(this.template, {}));
20 panels.push({name: 'html', klass: HTMLView});