Files
NodeBB/public/src/client/top.js
Barış Soner Uşaklı c27be9db5a Recent refactor (#6879)
* 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
2018-10-27 06:26:50 -04:00

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;
});