mirror of https://github.com/zulip/zulip.git
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:
parent
f2659b7dcd
commit
86b87556a6
|
@ -639,7 +639,11 @@ $(function () {
|
|||
if (scroll_positions.hasOwnProperty(target_tab)) {
|
||||
viewport.scrollTop(scroll_positions[target_tab]);
|
||||
} else {
|
||||
viewport.scrollTop(0);
|
||||
if (target_tab === '#home') {
|
||||
scroll_to_selected();
|
||||
} else {
|
||||
viewport.scrollTop(0);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue