mirror of
https://github.com/jech/galene.git
synced 2024-11-12 19:55:59 +01:00
Remove mentions of #anonymous-users.
This commit is contained in:
parent
f595da8fa9
commit
1064c4a47b
2 changed files with 0 additions and 5 deletions
|
@ -76,10 +76,6 @@ h1 {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#anonymous-users {
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chatbox {
|
#chatbox {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
|
@ -682,7 +682,6 @@ function addUser(id, name) {
|
||||||
users[id] = name;
|
users[id] = name;
|
||||||
|
|
||||||
let div = document.getElementById('users');
|
let div = document.getElementById('users');
|
||||||
let anon = document.getElementById('anonymous-users');
|
|
||||||
let user = document.createElement('div');
|
let user = document.createElement('div');
|
||||||
user.id = 'user-' + id;
|
user.id = 'user-' + id;
|
||||||
user.textContent = name ? name : '(anon)';
|
user.textContent = name ? name : '(anon)';
|
||||||
|
|
Loading…
Reference in a new issue