mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-12 22:26:08 -04:00
Update to make random color more discrete
This commit is contained in:
parent
a8c12d0d21
commit
f69a5361cb
2 changed files with 4 additions and 10 deletions
|
@ -756,13 +756,11 @@ function connection(socket) {
|
|||
|
||||
//initialize user data
|
||||
//random color
|
||||
var color = randomcolor({
|
||||
luminosity: 'light'
|
||||
});
|
||||
var color = randomcolor();
|
||||
//make sure color not duplicated or reach max random count
|
||||
if (notes[noteId]) {
|
||||
var randomcount = 0;
|
||||
var maxrandomcount = 5;
|
||||
var maxrandomcount = 10;
|
||||
var found = false;
|
||||
do {
|
||||
Object.keys(notes[noteId].users).forEach(function (user) {
|
||||
|
@ -772,9 +770,7 @@ function connection(socket) {
|
|||
}
|
||||
});
|
||||
if (found) {
|
||||
color = randomcolor({
|
||||
luminosity: 'light'
|
||||
});
|
||||
color = randomcolor();
|
||||
randomcount++;
|
||||
}
|
||||
} while (found && randomcount < maxrandomcount);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue