diff options
author | FChannel <> | 2021-05-12 23:10:53 -0700 |
---|---|---|
committer | FChannel <> | 2021-05-12 23:10:53 -0700 |
commit | dfa4f1a3fe42ca9896879d933cb5fd33afd71a8a (patch) | |
tree | 557e62a200131ffac9e040f3c739f4fd823db100 /static/js | |
parent | d46dc93dce176e8e2c054a1454c097123a08b4af (diff) |
adjusted reply-box clipping
Diffstat (limited to 'static/js')
-rw-r--r-- | static/js/posts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/static/js/posts.js b/static/js/posts.js index 118c362..8dd05eb 100644 --- a/static/js/posts.js +++ b/static/js/posts.js @@ -184,7 +184,7 @@ function quote(actorName, opid, id) if(id == "reply") { var h = document.getElementById(id + "-content").offsetTop - 548; } else { - var h = document.getElementById(id + "-content").offsetTop - 448; + var h = document.getElementById(id + "-content").offsetTop - 348; } |