fix: category images (helpers.generateCategoryBackground)

This commit is contained in:
Mega
2015-03-27 14:51:36 +03:00
parent ed8d60b76b
commit 8b48a1e3af

View File

@@ -57,19 +57,22 @@
helpers.generateCategoryBackground = function(category) {
var style = [];
if (category.backgroundImage) {
style.push('background-image: url(' + category.backgroundImage + ')');
}
if (category.bgColor) {
style.push('background-color: ' + category.bgColor + ';');
style.push('background-color: ' + category.bgColor);
}
if (category.color) {
style.push('color: ' + category.color + ';');
style.push('color: ' + category.color);
}
return style.join(' ');
if (category.backgroundImage) {
style.push('background-image: url(' + category.backgroundImage + ')');
if (category.imageClass) {
style.push('background-size: ' + category.imageClass);
}
}
return style.join('; ') + ';';
};
helpers.generateTopicClass = function(topic) {