Ticket #801 - better editor's textarea without interfering with gallery sidebar
authorLukasz Anwajler <lukasz@anwajler.com>
Sun, 5 Sep 2010 23:18:42 +0000 (18:18 -0500)
committerLukasz Anwajler <lukasz@anwajler.com>
Sun, 5 Sep 2010 23:18:42 +0000 (18:18 -0500)
redakcja/static/js/wiki/view_editor_wysiwyg.js

index 2f4e43d..1986984 100644 (file)
             $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();