Add files via upload

Added a Chat Input Field and Moderation Tools.
This commit is contained in:
Rodrigo Emanuel
2025-05-23 19:28:51 -03:00
committed by GitHub
parent 847769bf79
commit 19006f06ea
9 changed files with 460 additions and 17 deletions

View File

@@ -116,6 +116,10 @@ async function twitchChatMessage(data) {
const classes = firstMessage ? ['first-message'] : [];
if (data.user.role == 4) {
classes.push('streamer');
}
const replyHTML = isReply ?
`<div class="reply"><i class="fa-solid fa-arrow-turn-up"></i> <strong>${replyData.userName}:</strong> ${replyData.msgBody}</div>` :
'';