X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3bf45c83c84f9e7a1c5f2dafd64d812c987037e5..dba809feb44cd1c4d155f3e3254a1cca5323f95f:/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