X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/726c66a59503d4d776083076b61b5bd9ba7790e4..a1982d4e37d348ca0f58d41e1d4ce6022ca09b4d:/project/templates/explorer/file_xml.html
diff --git a/project/templates/explorer/file_xml.html b/project/templates/explorer/file_xml.html
index bd022e9f..c774fe1e 100644
--- a/project/templates/explorer/file_xml.html
+++ b/project/templates/explorer/file_xml.html
@@ -19,7 +19,27 @@
                     $('#images').data('lastScroll', -1000);
                 });
             });
-                    
+            
+            function resizePanels() {
+                $('iframe').width($(window).width() - $('#sidebar').outerWidth());
+                $('iframe').height($(window).height() - 100);
+                $('#images-wrap, #toggle-sidebar').height($(window).height() - 100);
+            }
+            
+            $('#toggle-sidebar').toggle(function() {
+                $('#images-wrap').width(480);
+                $('#sidebar').width(488);
+                resizePanels();
+            }, function() {
+                $('#images-wrap').width(0);
+                $('#sidebar').width(8);
+                resizePanels();
+            })
+            
+            $(window).resize(function() {
+                resizePanels();
+            })
+            
             var editor = CodeMirror.fromTextArea("id_text", {
                 parserfile: 'parsexml.js',
                 path: "/static/js/codemirror/",
@@ -32,12 +52,14 @@
                     var percentScrolled = $('body', this).scrollTop() / $('body', this).height();
                     $('#images-wrap').scrollTop(percentScrolled * $('#images').height());
                 });
+                
+                setTimeout(function() {resizePanels();}, 10);
             })
             
             addEditorButton('utwór', function(text) { return '
Aby zobaczyÄ obrazki wybierz folder z obrazkami powyżej.
-