mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 12:31:33 +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
212 B
JavaScript
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;
|
|
});
|