X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/9490c431ea46a6c3d9f1d348a5b525c0bd3b6359..dba809feb44cd1c4d155f3e3254a1cca5323f95f:/project/static/js/views/html.js diff --git a/project/static/js/views/html.js b/project/static/js/views/html.js index cd32cedd..87f2ab7b 100644 --- a/project/static/js/views/html.js +++ b/project/static/js/views/html.js @@ -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