We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd613d commit a7ffa9fCopy full SHA for a7ffa9f
src/network/network_view.js
@@ -817,14 +817,18 @@ cls.NetworkDetailOverlayViewPrototype = function()
817
{
818
entry.check_to_get_body();
819
container.clearAndRender(this._render_details_view(entry));
820
- }
821
- this.text_search.update_search();
+ this.text_search.update_search();
+ if (this._details_scroll_top)
822
+ container.scrollTop = this._details_scroll_top;
823
- if (this._details_scroll_top)
824
- container.scrollTop = this._details_scroll_top;
+ if (this._details_scroll_left)
825
+ container.scrollLeft = this._details_scroll_left;
826
- if (this._details_scroll_left)
827
- container.scrollLeft = this._details_scroll_left;
+ }
828
+ else
829
+ {
830
+ this.hide();
831
832
}
833
};
834
0 commit comments