From 75b6ebf2878f11d93abca0040c3fc14a5f7ece8a Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Fri, 9 Sep 2016 16:35:38 +0100 Subject: [PATCH] revert comment position --- lib/models/room.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/models/room.js b/lib/models/room.js index f11cae1aa..61c809366 100644 --- a/lib/models/room.js +++ b/lib/models/room.js @@ -1323,6 +1323,18 @@ module.exports = Room; * }); */ +/** + * Fires whenever the live timeline in a room is reset. + * + * When we get a 'limited' sync (for example, after a network outage), we reset + * the live timeline to be empty before adding the recent events to the new + * timeline. This event is fired after the timeline is reset, and before the + * new events are added. + * + * @event module:client~MatrixClient#"Room.timelineReset" + * @param {Room} room The room whose live timeline was reset. + */ + /** * Fires when the status of a transmitted event is updated. * @@ -1357,15 +1369,3 @@ module.exports = Room; * * @param {EventStatus} oldStatus The previous event status. */ - -/** - * Fires whenever the live timeline in a room is reset. - * - * When we get a 'limited' sync (for example, after a network outage), we reset - * the live timeline to be empty before adding the recent events to the new - * timeline. This event is fired after the timeline is reset, and before the - * new events are added. - * - * @event module:client~MatrixClient#"Room.timelineReset" - * @param {Room} room The room whose live timeline was reset. - */