Browse Source

Fix for 8b1c9de

Visman 2 years ago
parent
commit
80a4ffff6e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/js/scloader.js

+ 1 - 1
public/js/scloader.js

@@ -73,7 +73,7 @@ ForkBB.editor = (function (doc, win) {
         sceditor.create(textarea, options);
         instance = sceditor.instance(textarea);
 
-        instance.height(instance.height() - instance.getBody().offsetHeight + 300);
+        instance.height(instance.height() - instance.getContentAreaContainer().offsetHeight + 250);
 
         if (smiliesEnabled) {
             var checkbox = doc.querySelector('input[name="hide_smilies"]');