X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/d3c74552a8f8509ff85cf956cf2b750d8387b683..80a2c67a898b06c9c28bda89d7aa012676c2a23a:/project/static/js/views/html.js diff --git a/project/static/js/views/html.js b/project/static/js/views/html.js index 054b60ee..87f2ab7b 100644 --- a/project/static/js/views/html.js +++ b/project/static/js/views/html.js @@ -1,18 +1,17 @@ -/*global Class render_template panels */ -var HTMLView = Class.extend({ +/*global View render_template panels */ +var HTMLView = View.extend({ element: null, + model: null, template: 'html-view-template', - init: function(element, template) { - this.element = $(element); - this.template = template || this.template; - this.element.html(render_template(this.template, {})); + init: function(element, model, template) { + this._super(element, model, template); }, dispose: function() { - + this._super(); } }); // Register view -panels.push({name: 'html', klass: HTMLView}); \ No newline at end of file +panels['html'] = HTMLView; \ No newline at end of file