Files
NodeBB/public/src/client/recent.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
212 B
JavaScript

'use strict';
define('forum/recent', ['topicList'], function (topicList) {
var Recent = {};
Recent.init = function () {
app.enterRoom('recent_topics');
topicList.init('recent');
};
return Recent;
});