fix message still loading issue

pull/932/head
Ryan Tharp 5 years ago
parent 7eab7fbcf4
commit 4254f15b44

@ -1189,6 +1189,11 @@
const el = this.$(`#${message.id}`);
const position = el.position();
// This message is likely not loaded yet in the DOM
if (!position) {
// should this be break?
continue;
}
const { top } = position;
// We're fully below the viewport, continue searching up.

Loading…
Cancel
Save