A pathetic attempt to get html markup to work in category descriptions. Link will still mangle it, but simple bold, italics, etc. will work.

This commit is contained in:
Neil Lalonde 2013-04-19 12:41:34 -04:00
parent de9ca54aed
commit 62a746fb68
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ Discourse.ComboboxViewCategory = Discourse.ComboboxView.extend({
templateData.text_color + ";'>" + templateData.name + "</span>";
result += " <span class='topic-count'>&times; " + templateData.topic_count + "</span>";
if (templateData.description && templateData.description !== 'null') {
result += '<div class="category-desc">' + Handlebars.Utils.escapeExpression(templateData.description.substr(0,200)) + (templateData.description.length > 200 ? '&hellip;' : '') + '</div>';
result += '<div class="category-desc">' + templateData.description.substr(0,200) + (templateData.description.length > 200 ? '&hellip;' : '') + '</div>';
}
return result;
}