Commit dca49485 authored by mnvdk's avatar mnvdk

reintroduced infoFill, moved infoFill to mongo

parent d02bfa84
...@@ -117,7 +117,8 @@ class Loader{ ...@@ -117,7 +117,8 @@ class Loader{
songSkin: { songSkin: {
background: "#ececec", background: "#ececec",
border: ["#fbfbfb", "#8b8b8b"], border: ["#fbfbfb", "#8b8b8b"],
outline: "#656565" outline: "#656565",
infoFill: "#656565"
} }
}) })
}), "/api/categories") }), "/api/categories")
......
...@@ -295,10 +295,12 @@ ...@@ -295,10 +295,12 @@
var _h = 22 var _h = 22
var _x = 628 - _w var _x = 628 - _w
var _y = 88 - _h var _y = 88 - _h
if(assets.categories.find(cat=>cat.title == selectedSong.category)){
ctx.fillStyle = assets.categories.find(cat=>cat.title == selectedSong.category).songSkin.outline let category = assets.categories.find(cat=>cat.title == selectedSong.category)
if(category != null && category.songSkin != null && category.songSkin.infoFill != null){
ctx.fillStyle = assets.categories.find(cat=>cat.title == selectedSong.category).songSkin.infoFill
}else{ }else{
ctx.fillStyle = assets.categories.find(cat=>cat.title == 'default').songSkin.outline ctx.fillStyle = assets.categories.find(cat=>cat.title == 'default').songSkin.infoFill
} }
this.draw.roundedRect({ this.draw.roundedRect({
ctx: ctx, ctx: ctx,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment