This website works better with JavaScript.
Home
Explore
Help
Sign In
ObsidianBlk
/
nespaint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
When painting the logo, no longer forces a background color.
dev
Bryan Miller
5 years ago
parent
9b1cab3472
commit
de620447fa
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+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";
});
}
}
Write
Preview
Loading…
Cancel
Save