remove console log

This commit is contained in:
s2
2017-12-13 16:44:59 +01:00
parent 2452acf440
commit f15fa07880

View File

@@ -42,7 +42,6 @@ var generateRandomColor = function(seed) {
var colors = ['#e6194b', '#3cb44b', '#ffe119', '#0082c8', '#f58231', '#FFFFFF']; var colors = ['#e6194b', '#3cb44b', '#ffe119', '#0082c8', '#f58231', '#FFFFFF'];
var selectColor = function (colorNum) { var selectColor = function (colorNum) {
console.log(colorNum, seed % colors.length, colors[seed % colors.length]);
return colors[seed % colors.length] return colors[seed % colors.length]
} }