mirror of https://github.com/zulip/zulip.git
message_scroll: Fix scroll to bottom button visible in Inbox view.
This commit is contained in:
parent
8f5b8dbf1a
commit
1f6625168a
|
@ -13,11 +13,13 @@ import * as unread_ui from "./unread_ui";
|
|||
|
||||
let hide_scroll_to_bottom_timer;
|
||||
export function hide_scroll_to_bottom() {
|
||||
const $show_scroll_to_bottom_button = $("#scroll-to-bottom-button-container");
|
||||
if (message_lists.current === undefined) {
|
||||
// Scroll to bottom button is not for non-message views.
|
||||
$show_scroll_to_bottom_button.removeClass("show");
|
||||
return;
|
||||
}
|
||||
|
||||
const $show_scroll_to_bottom_button = $("#scroll-to-bottom-button-container");
|
||||
if (
|
||||
message_viewport.bottom_rendered_message_visible() ||
|
||||
message_lists.current.visibly_empty()
|
||||
|
|
Loading…
Reference in New Issue