From 1af3f64d7d90e3c6b2fa5b119dd2489a5c4c8247 Mon Sep 17 00:00:00 2001 From: FChannel <=> Date: Thu, 28 Jan 2021 21:42:39 -0800 Subject: reply popup box bottom html --- static/js/posts.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'static/js/posts.js') diff --git a/static/js/posts.js b/static/js/posts.js index 805c1c1..1cb032e 100644 --- a/static/js/posts.js +++ b/static/js/posts.js @@ -180,7 +180,12 @@ function quote(actorName, opid, id) var inReplyTo = document.getElementById("inReplyTo-box"); var w = window.innerWidth / 2 - 200; - var h = document.getElementById(id + "-content").offsetTop - 448; + if(id == "reply") { + var h = document.getElementById(id + "-content").offsetTop - 548; + } else { + var h = document.getElementById(id + "-content").offsetTop - 448; + } + box.setAttribute("style", "display: block; position: absolute; width: 400px; height: 550px; z-index: 9; top: " + h + "px; left: " + w + "px; padding: 5px;"); @@ -191,10 +196,12 @@ function quote(actorName, opid, id) header.innerText = "Replying to Thread No. " + shortURL(actorName, opid); inReplyTo.value = opid; - if(comment.value != "") - comment.value += "\n>>" + id; - else - comment.value += ">>" + id; + if(id != "reply") { + if(comment.value != "") + comment.value += "\n>>" + id; + else + comment.value += ">>" + id; + } dragElement(header); -- cgit v1.2.3