6 lines
224 B
JavaScript
6 lines
224 B
JavaScript
import { categoryLinkHTML } from 'discourse/lib/html-builder';
|
|
|
|
Handlebars.registerHelper('category-link', function(property, options) {
|
|
return categoryLinkHTML(Ember.Handlebars.get(this, property, options), options);
|
|
});
|