FIX: normalize category badge code on edit category modal
This commit is contained in:
parent
5b602cc043
commit
45e75f3d48
|
@ -70,18 +70,16 @@ Discourse.EditCategoryController = Discourse.ObjectController.extend(Discourse.M
|
|||
return "background-color: #" + (this.get('color')) + "; color: #" + (this.get('text_color')) + ";";
|
||||
}.property('color', 'text_color'),
|
||||
|
||||
parentStyle: function() {
|
||||
if (this.get('parent_category_id')) {
|
||||
var parent = Discourse.Category.list().findBy('id', parseInt(this.get('parent_category_id'), 10));
|
||||
if (parent) {
|
||||
return 'background-color: #' + parent.get('color') + ';';
|
||||
} else {
|
||||
return 'display: none';
|
||||
}
|
||||
} else {
|
||||
return 'display: none;';
|
||||
}
|
||||
}.property('parent_category_id'),
|
||||
categoryBadgePreview: function() {
|
||||
var c = Discourse.Category.create({
|
||||
name: this.get('categoryName'),
|
||||
color: this.get('color'),
|
||||
text_color: this.get('text_color'),
|
||||
parent_category_id: parseInt(this.get('parent_category_id'),10),
|
||||
read_restricted: this.get('model.read_restricted')
|
||||
});
|
||||
return Discourse.HTML.categoryBadge(c, {showParent: true, link: false});
|
||||
}.property('parent_category_id', 'categoryName', 'color', 'text_color'),
|
||||
|
||||
// background colors are available as a pipe-separated string
|
||||
backgroundColors: function() {
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<section class='field'>
|
||||
<label>{{i18n category.badge_colors}}</label>
|
||||
<div class="category-color-editor">
|
||||
<span class='badge-category-parent' {{bind-attr style="parentStyle"}}> </span><span class='badge-category' {{bind-attr style="colorStyle"}}>{{categoryName}}</span>
|
||||
{{{categoryBadgePreview}}}
|
||||
|
||||
<div class='input-prepend input-append' style="margin-top: 10px;">
|
||||
<span class='color-title'>{{i18n category.background_color}}:</span>
|
||||
|
|
Loading…
Reference in New Issue