Trigger keep to bottom for previews correctly

This commit is contained in:
Pavel Djundik 2017-11-26 15:49:31 +02:00
parent 5ffeb04343
commit 6862c2e6b0

View file

@ -29,12 +29,12 @@ function renderPreview(preview, msg) {
preview.shown = preview.shown && options.shouldOpenMessagePreview(preview.type);
const container = msg.closest(".chat");
const channelId = container.data("id");
const activeChannelId = chat.find(".chan.active").data("id");
const container = msg.closest(".messages");
const channelId = container.closest(".chan").data("id") || -1;
const activeChannelId = chat.find(".chan.active").data("id") || -2;
let bottom = false;
if (container.length && activeChannelId === channelId) {
if (activeChannelId === channelId) {
bottom = container.isScrollBottom();
}