Index: Source/devtools/front_end/main/AdvancedApp.js |
diff --git a/Source/devtools/front_end/main/AdvancedApp.js b/Source/devtools/front_end/main/AdvancedApp.js |
index ea2c82e7a12b79da7f4b806ba0eb5c76a0192ba4..2dae0138fb781af5e8988870e554aafd8f32c03e 100644 |
--- a/Source/devtools/front_end/main/AdvancedApp.js |
+++ b/Source/devtools/front_end/main/AdvancedApp.js |
@@ -83,11 +83,7 @@ WebInspector.AdvancedApp.prototype = { |
if (this._toolboxWindow) |
return; |
- // FIXME: Remove toolbox=true and fix the check in DevToolsWindow::WebContentsCreated(). |
- var toolbox = (window.location.search ? "&" : "?") + "toolbox=true"; |
- var hash = window.location.hash; |
- var url = window.location.href.replace(hash, "") + toolbox + hash; |
- url = url.replace("devtools.html", "toolbox.html"); |
+ var url = window.location.href.replace("devtools.html", "toolbox.html"); |
this._toolboxWindow = window.open(url, undefined); |
}, |