Chromium Code Reviews| Index: Source/devtools/front_end/components/InspectorView.js |
| diff --git a/Source/devtools/front_end/components/InspectorView.js b/Source/devtools/front_end/components/InspectorView.js |
| index 2ad7eac3a47cad9482a8f34d46e48e414c637989..259a4904eb366508f1808938b33c63e1bb9ba1d1 100644 |
| --- a/Source/devtools/front_end/components/InspectorView.js |
| +++ b/Source/devtools/front_end/components/InspectorView.js |
| @@ -62,7 +62,7 @@ WebInspector.InspectorView = function() |
| if (WebInspector.experimentsSettings.devicesPanel.isEnabled()) { |
| this._remoteDeviceCountElement = this._rightToolbarElement.createChild("div", "hidden"); |
| - this._remoteDeviceCountElement.addEventListener("click", this.showViewInDrawer.bind(this, "devices"), false); |
| + this._remoteDeviceCountElement.addEventListener("click", this.showViewInDrawer.bind(this, "devices", true), false); |
|
aandrey
2014/06/17 20:58:37
behavior change: was this a bug?
apavlov
2014/06/18 07:55:13
No change here: showViewInDrawer would previously
|
| this._remoteDeviceCountElement.id = "remote-device-count"; |
| WebInspector.inspectorFrontendEventSink.addEventListener(WebInspector.InspectorView.Events.DeviceCountChanged, this._onDeviceCountChanged, this); |
| } |