Uproszczenie implementacji wzorca observer.
[redakcja.git] / project / static / js / views / html.js
index 054b60e..cd32ced 100644 (file)
@@ -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();
   }
 });