Commit 286de02c authored by alph's avatar alph Committed by Commit bot

DevTools: Hide overview pane on timeline landing page.

BUG=570441

Review-Url: https://codereview.chromium.org/2570553003
Cr-Commit-Position: refs/heads/master@{#438056}
parent 3520351e
......@@ -725,9 +725,9 @@ Timeline.TimelinePanel = class extends UI.Panel {
_showLandingPage() {
if (this._landingPage)
return;
this._detailsSplitWidget.detach();
this._timelinePane.detach();
this._landingPage = new Timeline.TimelineLandingPage();
this._landingPage.show(this._timelinePane.element);
this._landingPage.show(this.element);
}
_hideLandingPage() {
......@@ -735,7 +735,7 @@ Timeline.TimelinePanel = class extends UI.Panel {
return;
this._landingPage.detach();
this._landingPage = null;
this._detailsSplitWidget.show(this._timelinePane.element);
this._timelinePane.show(this.element);
}
/**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment