this.parent = parent;
this.buttonToolbar = new ButtonToolbarView(
$('.xmlview-toolbar', this.element),
- this.model.toolbarButtonsModel);
+ this.model.toolbarButtonsModel, parent);
+ $('.xmlview-toolbar', this.element).bind('resize.xmlview', this.resized.bind(this));
+
this.parent.freeze('Ćadowanie edytora...');
this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
parserfile: 'parsexml.js',
});
},
+ resized: function(event) {
+ var height = this.element.height() - $('.xmlview-toolbar', this.element).outerHeight();
+ console.log('.xmlview height =', height);
+ $('.xmlview', this.element).height(height);
+ },
+
editorDidLoad: function(editor) {
$(editor.frame).css({width: '100%', height: '100%'});
this.model