From 4e2993dd1d4ac721252c354c34751c3deeae1995 Mon Sep 17 00:00:00 2001 From: Alain Takoudjou Date: Sat, 31 Oct 2020 00:37:03 +0100 Subject: [PATCH] put message send date in the msg header block --- static/sfu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/sfu.js b/static/sfu.js index e5ab97c..b2e0e20 100644 --- a/static/sfu.js +++ b/static/sfu.js @@ -1437,7 +1437,7 @@ function addToChatbox(peerId, dest, nick, time, kind, message) { let tm = document.createElement('span'); tm.textContent = formatTime(time); tm.classList.add('message-time'); - footer.appendChild(tm); + header.appendChild(tm); } } p.classList.add('message-content');