13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
(function() {
|
|
|
|
window.Discourse.FeaturedTopicsView = Discourse.View.extend({
|
|
templateName: 'featured_topics',
|
|
classNames: ['category-list-item'],
|
|
init: function() {
|
|
this._super();
|
|
return this.set('context', this.get('content'));
|
|
}
|
|
});
|
|
|
|
}).call(this);
|