mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 06:52:46 +08:00
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
/**
|
|
This view is used for rendering a suggested topic
|
|
|
|
@class SuggestedTopicView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.SuggestedTopicView = Discourse.View.extend({
|
|
templateName: 'suggested_topic'
|
|
});
|
|
|
|
|