+  resized: function(event) {
+    var height = this.element.height() - $('.xmlview-toolbar', this.element).outerHeight();
+    $('.xmlview', this.element).height(height);
+  },
+  
+  editorDidLoad: function(editor) {
+    $(editor.frame).css({width: '100%', height: '100%'});
+    this.model
+      .addObserver(this, 'data', this.modelDataChanged.bind(this))
+      .addObserver(this, 'state', this.modelStateChanged.bind(this))
+      .load();
+    
+    this.parent.unfreeze();
+      
+    this.editor.setCode(this.model.get('data'));
+    this.modelStateChanged('state', this.model.get('state'));
+        
+    // editor.grabKeys(
+    //   $.fbind(self, self.hotkeyPressed),
+    //   $.fbind(self, self.isHotkey)
+    // );
+  },
+  
+  editorDataChanged: function() {
+    this.model.set('data', this.editor.getCode());
+  },
+  
+  modelDataChanged: function(property, value) {
+    if (this.editor.getCode() != value) {
+      this.editor.setCode(value);
+    }
+  },
+  
+  modelStateChanged: function(property, value) {
+    if (value == 'synced' || value == 'dirty') {
+      this.parent.unfreeze();
+    } else if (value == 'unsynced') {
+      this.parent.freeze('Niezsynchronizowany...');
+    } else if (value == 'loading') {
+      this.parent.freeze('Ładowanie...');
+    } else if (value == 'saving') {
+      this.parent.freeze('Zapisywanie...');
+    }
+  },