enhanced reply style

This commit is contained in:
Mystikfluu 2022-07-10 13:40:05 +02:00
parent 6f3ad7a617
commit 844164d95d

View File

@ -125,11 +125,16 @@ async function createPost(username,text,time,specialtext,postid,isbot,reply_id)
replyAvatar.classList.add("avatar")
replyAvatar.src = await getavatar(reply_username)
replyDiv.appendChild(replyAvatar)
replyDiv.appendChild(reply_username_text)
replyDiv.appendChild(spacerTextNode())
replyDiv.innerHTML += filterPost(reply_text)
replyDiv.appendChild(replyBr)
replyA.href = "#"+reply_id
replyA.appendChild(replyAvatar)
replyA.appendChild(reply_username_text)
replyA.appendChild(spacerTextNode())
replyA.innerHTML += filterPost(reply_text.replace("\n"," ").substring(0,20))
replyA.appendChild(replyBr)
replyDiv.appendChild(replyA)
newDiv.appendChild(replyDiv)
} catch (ignored) {}
}