Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1227)

Unified Diff: Source/devtools/front_end/elements/ElementsPanel.js

Issue 1312033008: Devtools UI: Upgrade breadcrumbs to material design UI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/elements/ElementsPanel.js
diff --git a/Source/devtools/front_end/elements/ElementsPanel.js b/Source/devtools/front_end/elements/ElementsPanel.js
index db1c88a2b52798ee72e94a8f59eb19dd50e83232..cf79afabfbf7ba7d29f6d14ef7b2e4835aecae0f 100644
--- a/Source/devtools/front_end/elements/ElementsPanel.js
+++ b/Source/devtools/front_end/elements/ElementsPanel.js
@@ -55,12 +55,9 @@ WebInspector.ElementsPanel = function()
this._toolbar = this._createElementsToolbar();
var toolbar = stackElement.createChild("div", "elements-topbar hbox");
toolbar.appendChild(this._toolbar.element);
- toolbar.appendChild(crumbsContainer);
- stackElement.appendChild(this._contentElement);
- } else {
- stackElement.appendChild(this._contentElement);
- stackElement.appendChild(crumbsContainer);
}
+ stackElement.appendChild(this._contentElement);
+ stackElement.appendChild(crumbsContainer);
this._elementsPanelTreeOutilneSplit = new WebInspector.SplitWidget(false, true, "treeOutlineAnimationTimelineWidget", 300, 300);
this._elementsPanelTreeOutilneSplit.hideSidebar();

Powered by Google App Engine
This is Rietveld 408576698