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

Unified Diff: Source/devtools/front_end/main/OverridesView.js

Issue 659573005: DevTools: NetworkPanel: show link where resource timing is explained. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/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 = {
« no previous file with comments | « Source/devtools/front_end/inspectorStyle.css ('k') | Source/devtools/front_end/network/RequestTimingView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698