mirror of https://github.com/vector-im/riot-web
Merge pull request #3952 from vector-im/dbkr/electron_copy_link_location
Desktop: 'copy link address'pull/3958/head
commit
b290a28123
|
@ -86,6 +86,12 @@ function onLinkContextMenu(ev, params) {
|
|||
safeOpenURL(params.linkURL);
|
||||
},
|
||||
}));
|
||||
popup_menu.append(new electron.MenuItem({
|
||||
label: 'Copy Link Address',
|
||||
click() {
|
||||
electron.clipboard.writeText(params.linkURL);
|
||||
},
|
||||
}));
|
||||
popup_menu.popup();
|
||||
ev.preventDefault();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue