From 03b3ce9f636fae24c7ef7201e9e0c38137396252 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Mon, 18 Feb 2013 03:24:11 +0100 Subject: [PATCH] Fix #645. --- 4chan_x.user.js | 5 +++++ changelog | 1 + src/features.coffee | 5 +++++ 3 files changed, 11 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index 534650513..d6c63d668 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -4909,6 +4909,11 @@ if (scroll) { nodes[0].scrollIntoView(); } + $.event('4chanParsingDone', { + threadId: ThreadUpdater.thread.ID, + offset: ThreadUpdater.root.children.length - count, + limit: ThreadUpdater.root.children.length + }); } return $.event('ThreadUpdate', { 404: false, diff --git a/changelog b/changelog index 8ed639190..d8236702c 100644 --- a/changelog +++ b/changelog @@ -26,6 +26,7 @@ alpha Fix Quote Backlinks not affecting inlined quotes. Fix Quote Highlighting not affecting inlined quotes. Fix unreadable inlined posts with the Tomorrow theme. + Fix user ID highlighting on fetched posts. master diff --git a/src/features.coffee b/src/features.coffee index 226b4aa06..4d6253c98 100644 --- a/src/features.coffee +++ b/src/features.coffee @@ -3200,6 +3200,11 @@ ThreadUpdater = if scroll nodes[0].scrollIntoView() + $.event '4chanParsingDone', + threadId: ThreadUpdater.thread.ID + offset: ThreadUpdater.root.children.length - count + limit: ThreadUpdater.root.children.length + $.event 'ThreadUpdate', 404: false thread: ThreadUpdater.thread