diff --git a/Website/interaction.js b/Website/interaction.js index b0351ef..95b4203 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -1064,7 +1064,7 @@ function GetValidSelector(str){ return clean.join(''); } -function stringToColour = (str) => { +function stringToColour(str) { let hash = 0; str.split('').forEach(char => { hash = char.charCodeAt(0) + ((hash << 5) - hash)