X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/d3c74552a8f8509ff85cf956cf2b750d8387b683..6d29b81537b9a6b32bd5415d0c4ff3323faa51a0:/project/static/js/views/html.js diff --git a/project/static/js/views/html.js b/project/static/js/views/html.js index 054b60ee..cd32cedd 100644 --- a/project/static/js/views/html.js +++ b/project/static/js/views/html.js @@ -1,16 +1,18 @@ -/*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) { + init: function(element, model, template) { this.element = $(element); + this.model = model; this.template = template || this.template; this.element.html(render_template(this.template, {})); }, dispose: function() { - + this._super(); } });