Usunięcie jadowitego żółtego koloru z tła edytora XML i poprawienie buga wprowadzoneg...
authorzuber <marek@stepniowski.com>
Mon, 24 Aug 2009 10:41:04 +0000 (12:41 +0200)
committerzuber <marek@stepniowski.com>
Mon, 24 Aug 2009 10:41:04 +0000 (12:41 +0200)
project/templates/explorer/panels/xmleditor.html

index 8115308..ea4c443 100644 (file)
@@ -10,7 +10,7 @@
        function xmleditor_onload(event, me) {
                console.log('loading: ', me);
                var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
-               $('textarea', panel).attr('id', textareaId);
+               $('textarea', me).attr('id', textareaId);
                var editor = CodeMirror.fromTextArea(textareaId, {
                        parserfile: 'parsexml.js',
                        path: "/static/js/codemirror/",
@@ -19,7 +19,7 @@
                })
                console.log('Frame is: ', editor.frame);
                var frame = $(editor.frame)
-               frame.css({width: '100%', height: '100%', background: 'yellow'});
+               frame.css({width: '100%', height: '100%'});
        };
 
        function xmleditor_onunload(event, me) {}