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

Unified Diff: Source/devtools/front_end/components/ShortcutsScreen.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/components/ShortcutsScreen.js
diff --git a/Source/devtools/front_end/components/ShortcutsScreen.js b/Source/devtools/front_end/components/ShortcutsScreen.js
index 0184136bd719f3a5cf0b3259623b23681d78aea5..7225046bc6a841d972ecf6398be6b9af0f9a0556 100644
--- a/Source/devtools/front_end/components/ShortcutsScreen.js
+++ b/Source/devtools/front_end/components/ShortcutsScreen.js
@@ -75,10 +75,7 @@ WebInspector.ShortcutsScreen.prototype = {
orderedSections[i].renderSection(container);
var note = scrollPane.createChild("p", "help-footnote");
- var noteLink = note.createChild("a");
- noteLink.href = "https://developers.google.com/chrome-developer-tools/docs/shortcuts";
- noteLink.target = "_blank";
- noteLink.createTextChild(WebInspector.UIString("Full list of keyboard shortcuts and gestures"));
+ note.appendChild(WebInspector.createDocumentationAnchor("shortcuts", WebInspector.UIString("Full list of keyboard shortcuts and gestures")));
return view;
}
« no previous file with comments | « Source/devtools/front_end/audits/AuditFormatters.js ('k') | Source/devtools/front_end/components/helpScreen.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698