Add files via upload

This commit is contained in:
Rodrigo Emanuel
2025-04-26 20:32:23 -03:00
committed by GitHub
parent 36e14d7165
commit 94398178bc
5 changed files with 12 additions and 21 deletions

View File

@@ -80,7 +80,7 @@ async function addMessageToChat(userID, messageID, platform, data) {
<div id="${messageID}" data-user="${userID}" class="${platform} ${data.classes} message" style="">
<div class="animate__animated ${chatHorizontal == true ? 'animate__fadeInRight' : 'animate__fadeInUp'} animate__faster">
${data.classes.includes("first-message") ? '<span class="first-chatter">👋</span>' : '' }
${data.classes.includes("first-message") ? '<span class="first-chatter"></span>' : '' }
${!data.shared ? '' : data.shared}
@@ -301,4 +301,4 @@ const notifySuccess = (success) => {
function escapeRegex(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
}
}