Merge branch 'master' into view-refactor
[redakcja.git] / project / static / js / views / html.js
index cd32ced..87f2ab7 100644 (file)
@@ -5,10 +5,7 @@ var HTMLView = View.extend({
   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() {
@@ -17,4 +14,4 @@ var HTMLView = View.extend({
 });
 
 // Register view
-panels.push({name: 'html', klass: HTMLView});
\ No newline at end of file
+panels['html'] = HTMLView;
\ No newline at end of file