Refaktor przyciskow.
[redakcja.git] / project / templates / explorer / panels / xmleditor.html
index 76018ca..7691269 100644 (file)
@@ -1,22 +1,20 @@
 {% load toolbar_tags %}
+{% toolbar toolbar_groups toolbar_extra_group %}
 
-<div class="iframe-container" style="position: absolute; top: 41pt; left:0px; right:0px; bottom: 0px;">
+<div class="iframe-container" style="position: absolute; top: 40px; left:0px; right:0px; bottom: 0px;">
        <textarea name="text">{{ text }}</textarea>
 </div>
 
-{% toolbar %}
-
 <script type="text/javascript" charset="utf-8">
-
 panel_hooks = {
        load: function () {
                var self = this;
                var panel = self.contentDiv;
 
         var textareaId = 'xmleditor-' + Math.ceil(Math.random() * 1000000000);
-               $('textarea', panel).attr('id', textareaId);
+       $('textarea', panel).attr('id', textareaId);
 
-       var texteditor = CodeMirror.fromTextArea(textareaId, {
+       var texteditor = CodeMirror.fromTextArea(textareaId, {            
             parserfile: 'parsexml.js',
             path: "{{STATIC_URL}}js/codemirror/",
             stylesheet: "{{STATIC_URL}}css/xmlcolors.css",
@@ -31,6 +29,7 @@ panel_hooks = {
                 texteditor.grabKeys(
                     $.fbind(self, self.hotkeyPressed),
                     $.fbind(self, self.isHotkey) );
+                
             }
         })
 
@@ -47,13 +46,18 @@ panel_hooks = {
 
        saveInfo: function(saveInfo) {
                var myInfo = {
-                       url: "{% url file_xml fpath %}", 
+                       url: "{% url file_xml fileid %}",
                        postData: {
                                content: this.texteditor.getCode()
                        } 
                };
                $.extend(saveInfo, myInfo);
-       }               
+       },
+
+        toolbarResized: function() {
+            $('.iframe-container', self.contentDiv).css('top',
+                    $('.toolbar', self.contentDiv).outerHeight() );
+        }
 };
 
 </script>