mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 00:46:03 +00:00
Don't jump to top of page when returning from another tab.
This fixes Trac #723 - Message view scrolls to top after reloading on another tab (e.g. settings) (imported from commit d9134cec6879625d577c43a08d258af3f6dacc5f)
This commit is contained in:
@@ -639,7 +639,11 @@ $(function () {
|
|||||||
if (scroll_positions.hasOwnProperty(target_tab)) {
|
if (scroll_positions.hasOwnProperty(target_tab)) {
|
||||||
viewport.scrollTop(scroll_positions[target_tab]);
|
viewport.scrollTop(scroll_positions[target_tab]);
|
||||||
} else {
|
} else {
|
||||||
viewport.scrollTop(0);
|
if (target_tab === '#home') {
|
||||||
|
scroll_to_selected();
|
||||||
|
} else {
|
||||||
|
viewport.scrollTop(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user