mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
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:
parent
de9ca54aed
commit
62a746fb68
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ Discourse.ComboboxViewCategory = Discourse.ComboboxView.extend({
|
|||
templateData.text_color + ";'>" + templateData.name + "</span>";
|
||||
result += " <span class='topic-count'>× " + 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 ? '…' : '') + '</div>';
|
||||
result += '<div class="category-desc">' + templateData.description.substr(0,200) + (templateData.description.length > 200 ? '…' : '') + '</div>';
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue