Browse Source

When painting the logo, no longer forces a background color.

dev
Bryan Miller 5 years ago
parent
commit
de620447fa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/js/main.js

+ 1
- 1
app/js/main.js View File

@@ -19,7 +19,7 @@ function TitlePainter(pal){
var cb = Math.floor(Math.random() * 3);
var index = (cb*16)+ca;
el.style.color = pal[index];
el.style["background-color"] = "#000";
//el.style["background-color"] = "#000";
});
}
}

Loading…
Cancel
Save