1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

put message send date in the msg header block

This commit is contained in:
Alain Takoudjou 2020-10-31 00:37:03 +01:00
parent 358cdd918d
commit 4e2993dd1d

View file

@ -1437,7 +1437,7 @@ function addToChatbox(peerId, dest, nick, time, kind, message) {
let tm = document.createElement('span'); let tm = document.createElement('span');
tm.textContent = formatTime(time); tm.textContent = formatTime(time);
tm.classList.add('message-time'); tm.classList.add('message-time');
footer.appendChild(tm); header.appendChild(tm);
} }
} }
p.classList.add('message-content'); p.classList.add('message-content');