| Index: Source/devtools/front_end/main/OverridesView.js
|
| diff --git a/Source/devtools/front_end/main/OverridesView.js b/Source/devtools/front_end/main/OverridesView.js
|
| index 7d46ff0045350ba0f501bc07fd99daba7c68729d..eed36da5aee39c542df9b5c802ea491b60281f4d 100644
|
| --- a/Source/devtools/front_end/main/OverridesView.js
|
| +++ b/Source/devtools/front_end/main/OverridesView.js
|
| @@ -200,10 +200,7 @@ WebInspector.OverridesView.DeviceTab = function()
|
| this.element.appendChild(this._createDeviceElement());
|
|
|
| var footnote = this.element.createChild("p", "help-footnote");
|
| - var footnoteLink = footnote.createChild("a");
|
| - footnoteLink.href = "https://developers.google.com/chrome-developer-tools/docs/mobile-emulation";
|
| - footnoteLink.target = "_blank";
|
| - footnoteLink.createTextChild(WebInspector.UIString("More information about screen emulation"));
|
| + footnote.appendChild(WebInspector.createDocumentationAnchor("device-mode", WebInspector.UIString("More information about screen emulation")));
|
| }
|
|
|
| WebInspector.OverridesView.DeviceTab.prototype = {
|
|
|