Changeset 232481 in webkit


Ignore:
Timestamp:
Jun 4, 2018, 2:49:50 PM (7 years ago)
Author:
Matt Baker
Message:

Web Inspector: Cannot copy a link address in Elements tab
https://bugs.webkit.org/show_bug.cgi?id=186281
<rdar://problem/39193355>

Reviewed by Brian Burg.

  • UserInterface/Views/ContextMenuUtilities.js:

(WI.appendContextMenuItemsForURL):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r232318 r232481  
     12018-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
    1122018-05-30  Daniel Bates  <dabates@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/ContextMenuUtilities.js

    r229495 r232481  
    121121
    122122    contextMenu.appendItem(WI.UIString("Copy Link Address"), () => {
    123         InspectorFrontendHost.copyText(sourceCode.url);
     123        InspectorFrontendHost.copyText(url);
    124124    });
    125125};
Note: See TracChangeset for help on using the changeset viewer.