12 lines
362 B
JavaScript
12 lines
362 B
JavaScript
export default Em.Component.extend({
|
|
tagName: 'a',
|
|
attributeBindings: ['href'],
|
|
href: function() {
|
|
return Discourse.getURL('/c/') + Discourse.Category.slugFor(this.get('category'));
|
|
}.property(),
|
|
|
|
render(buffer) {
|
|
const categoryLogo = this.get('category.logo_url');
|
|
buffer.push(`<img class="category-logo" src='${categoryLogo}'/>`);
|
|
}
|
|
}); |