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 00ddd3142ed6c719a44567d6a826324c216224b1..b11fcdf71827008af2200c0dfb54de8e49d3c3ad 100644 |
--- a/Source/devtools/front_end/elements/ElementsPanel.js |
+++ b/Source/devtools/front_end/elements/ElementsPanel.js |
@@ -83,7 +83,7 @@ WebInspector.ElementsPanel = function() |
this._elementsSidebarViewWrappers = []; |
var sharedSidebarModel = new WebInspector.SharedSidebarModel(); |
this.sidebarPanes.platformFonts = WebInspector.PlatformFontsWidget.createSidebarWrapper(sharedSidebarModel); |
- this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(this._showStylesSidebar.bind(this)); |
+ this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(); |
this.sidebarPanes.computedStyle = WebInspector.ComputedStyleWidget.createSidebarWrapper(this.sidebarPanes.styles, sharedSidebarModel); |
@@ -945,11 +945,6 @@ WebInspector.ElementsPanel.prototype = { |
this._treeOutlines[i].update(); |
}, |
- _showStylesSidebar: function() |
- { |
- this.sidebarPaneView.selectTab(this.sidebarPanes.styles.title()); |
- }, |
- |
_updateSidebarPosition: function() |
{ |
var vertically; |