mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-07 07:10:07 +01:00
* wip * fix inf scroll * remove duplicated code * remove dupe code in /unread * use topicList * update tag page to use topicList * fix tests * combine ifs * remove more dupe code * disable timeout
14 lines
194 B
JavaScript
14 lines
194 B
JavaScript
'use strict';
|
|
|
|
define('forum/top', ['topicList'], function (topicList) {
|
|
var Top = {};
|
|
|
|
Top.init = function () {
|
|
app.enterRoom('top_topics');
|
|
|
|
topicList.init('top');
|
|
};
|
|
|
|
return Top;
|
|
});
|