diff --git a/static/sfu.css b/static/sfu.css index 15433d9..b44070a 100644 --- a/static/sfu.css +++ b/static/sfu.css @@ -76,10 +76,6 @@ h1 { overflow-x: hidden; } -#anonymous-users { - white-space: nowrap; -} - #chatbox { width: 100%; } diff --git a/static/sfu.js b/static/sfu.js index 77af10e..e5ed992 100644 --- a/static/sfu.js +++ b/static/sfu.js @@ -682,7 +682,6 @@ function addUser(id, name) { users[id] = name; let div = document.getElementById('users'); - let anon = document.getElementById('anonymous-users'); let user = document.createElement('div'); user.id = 'user-' + id; user.textContent = name ? name : '(anon)';