mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 22:54:15 +00:00
Trigger keep to bottom for previews correctly
This commit is contained in:
parent
5ffeb04343
commit
6862c2e6b0
1 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue