| 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;
|
| }
|
|
|