X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/594998281db97c722685e9e8ed5759d4e5b2ded0..1024e7820ecb22cde464da17ae22b161adf75c3b:/redakcja/static/js/wiki/view_editor_wysiwyg.js diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index 2f4e43d4..ad48a21c 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -289,8 +289,8 @@ $box = $origin; } - /* always stick to the left to avoid interfering with gallery */ - var x = 20; + /* check sidebar width and display textarea on the right but avoiding interfering with gallery */ + var x = $(document).width() - $("#sidebar").width() - 576 - 100; // and little margin here: 100px var y = $origin.offset().top + $("#html-view").scrollTop(); @@ -487,12 +487,7 @@ _finalize(success); }, error: function(text){ - /* only basic error message */ - var errorArray = text.split("\n"); - if (errorArray.length >= 3) { - text = errorArray[2].split(":")[0]; - } - $('#html-view').html('

Wystąpił błąd: '+ text + '

'); + $('#html-view').html('

Wystąpił błąd:

'+text+'
'); _finalize(failure); } });