X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/fc7a60feb9496c250cd1e8ca3db8c74267790047..b12e3cd743360720e18e35f77ece2ba355d99d55:/project/templates/explorer/panels/xmleditor.html diff --git a/project/templates/explorer/panels/xmleditor.html b/project/templates/explorer/panels/xmleditor.html index 7691269b..74a68776 100644 --- a/project/templates/explorer/panels/xmleditor.html +++ b/project/templates/explorer/panels/xmleditor.html @@ -16,9 +16,12 @@ panel_hooks = { 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'); }, @@ -33,8 +36,11 @@ panel_hooks = { } }) - $(texteditor.frame).css({width: '100%', height: '100%'}); + $('.CodeMirror-content-wrapper').css({ + width: '100%', height: '100%' }); + this.texteditor = texteditor; + self._endload(); }, unload: function() { @@ -55,8 +61,8 @@ panel_hooks = { }, toolbarResized: function() { - $('.iframe-container', self.contentDiv).css('top', - $('.toolbar', self.contentDiv).outerHeight() ); + $('.iframe-container', this.contentDiv).css('top', + $('.toolbar', this.contentDiv).outerHeight() ); } };