Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update postStreamScrubber #1944

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion js/src/forum/components/PostStreamScrubber.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ export default class PostStreamScrubber extends Component {
let index = $items.first().data('index') || 0;
let visible = 0;
let period = '';
let indexUpdated = false;

// Now loop through each of the items in the discussion. An 'item' is
// either a single post or a 'gap' of one or more posts that haven't
Expand All @@ -223,8 +224,9 @@ export default class PostStreamScrubber extends Component {
const visibleBottom = Math.min(height, viewportTop + viewportHeight - top);
const visiblePost = visibleBottom - visibleTop;

if (top <= viewportTop) {
if (!indexUpdated) {
index = parseFloat($this.data('index')) + visibleTop / height;
indexUpdated = true;
}

if (visiblePost > 0) {
Expand Down