getting rid of another table and welcome click
This commit is contained in:
@@ -320,11 +320,18 @@ class Message{
|
||||
text.appendChild(texttxt);
|
||||
build.appendChild(text);
|
||||
texttxt.classList.add("flexltr");
|
||||
const messaged=document.createElement("p");
|
||||
const messaged=document.createElement("span");
|
||||
div["txt"]=messaged;
|
||||
messaged.textContent="welcome: "+this.author.username;
|
||||
messaged.textContent="welcome: ";
|
||||
texttxt.appendChild(messaged);
|
||||
|
||||
const username=document.createElement("span");
|
||||
username.textContent=this.author.username;
|
||||
this.author.profileclick(username);
|
||||
this.author.bind(username,this.guild);
|
||||
texttxt.appendChild(username);
|
||||
username.classList.add("username");
|
||||
|
||||
const time=document.createElement("span");
|
||||
time.textContent=" "+formatTime(new Date(this.timestamp));
|
||||
time.classList.add("timestamp");
|
||||
|
Reference in New Issue
Block a user