var texteditor = CodeMirror.fromTextArea(textareaId, {
parserfile: 'parsexml.js',
- path: "{{STATIC_URL}}js/codemirror/",
+ path: "{{STATIC_URL}}js/lib/codemirror/",
+ width: 'auto',
stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
parserConfig: {useHTMLKludges: false},
+ textWrapping: false,
+ lineNumbers: true,
onChange: function() {
self.fireEvent('contentChanged');
},
}
})
- $(texteditor.frame).css({width: '100%', height: '100%'});
+ $('.CodeMirror-content-wrapper').css({
+ width: '100%', height: '100%' });
+
this.texteditor = texteditor;
+ self._endload();
},
unload: function() {
},
toolbarResized: function() {
- $('.iframe-container', self.contentDiv).css('top',
- $('.toolbar', self.contentDiv).outerHeight() );
+ $('.iframe-container', this.contentDiv).css('top',
+ $('.toolbar', this.contentDiv).outerHeight() );
}
};