template: 'html-view-template',
init: function(element, model, template) {
- this.element = $(element);
- this.model = model;
- this.template = template || this.template;
- this.element.html(render_template(this.template, {}));
+ this._super(element, model, template);
},
dispose: function() {
});
// Register view
-panels.push({name: 'html', klass: HTMLView});
\ No newline at end of file
+panels['html'] = HTMLView;
\ No newline at end of file