mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-04 05:39:51 +01:00
14 lines
196 B
JavaScript
14 lines
196 B
JavaScript
'use strict';
|
|
|
|
define('forum/top', ['topicList'], function (topicList) {
|
|
const Top = {};
|
|
|
|
Top.init = function () {
|
|
app.enterRoom('top_topics');
|
|
|
|
topicList.init('top');
|
|
};
|
|
|
|
return Top;
|
|
});
|