From 507b2d4bf2ddee7fd083c72500ca04f5de71331e Mon Sep 17 00:00:00 2001 From: Lukasz Anwajler Date: Sun, 5 Sep 2010 18:18:42 -0500 Subject: [PATCH] Ticket #801 - better editor's textarea without interfering with gallery sidebar --- redakcja/static/js/wiki/view_editor_wysiwyg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index 2f4e43d4..19869847 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(); -- 2.20.1