Changeset 232481 in webkit
- Timestamp:
- Jun 4, 2018, 2:49:50 PM (7 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r232318 r232481 1 2018-06-04 Matt Baker <mattbaker@apple.com> 2 3 Web Inspector: Cannot copy a link address in Elements tab 4 https://bugs.webkit.org/show_bug.cgi?id=186281 5 <rdar://problem/39193355> 6 7 Reviewed by Brian Burg. 8 9 * UserInterface/Views/ContextMenuUtilities.js: 10 (WI.appendContextMenuItemsForURL): 11 1 12 2018-05-30 Daniel Bates <dabates@apple.com> 2 13 -
trunk/Source/WebInspectorUI/UserInterface/Views/ContextMenuUtilities.js
r229495 r232481 121 121 122 122 contextMenu.appendItem(WI.UIString("Copy Link Address"), () => { 123 InspectorFrontendHost.copyText( sourceCode.url);123 InspectorFrontendHost.copyText(url); 124 124 }); 125 125 };
Note:
See TracChangeset
for help on using the changeset viewer.