X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/726c66a59503d4d776083076b61b5bd9ba7790e4..d30c85700a77653b48a5c28b5242dbe22b99a174:/project/templates/explorer/file_xml.html
diff --git a/project/templates/explorer/file_xml.html b/project/templates/explorer/file_xml.html
index bd022e9f..350d0788 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(0);
+ $('#sidebar').width(8);
+ resizePanels();
+ }, function() {
+ $('#images-wrap').width(480);
+ $('#sidebar').width(488);
+ resizePanels();
+ })
+
+ $(window).resize(function() {
+ resizePanels();
+ })
+
var editor = CodeMirror.fromTextArea("id_text", {
parserfile: 'parsexml.js',
path: "/static/js/codemirror/",
@@ -32,6 +52,8 @@
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.
-