1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-06 08:15:45 +01:00

Add 'Copy' MOW context menu item for Windows users.

This commit is contained in:
Kris Maglione
2010-10-05 00:27:07 -04:00
parent 5946f6a757
commit 1edd4d9ce0
2 changed files with 25 additions and 4 deletions

View File

@@ -37,10 +37,16 @@
noautohide="true" noautofocus="true"/>
<menupopup id="dactyl-contextmenu"
onpopupshowing="return event.target != this || document.popupNode instanceof HTMLAnchorElement;">
onpopupshowing="return (event.target != this || dactyl.modules.commandline.onContext(event));">
<menuitem id="dactyl-context-copylink"
label="Copy Link Location"
label="Copy Link Location" dactyl:group="link"
oncommand="goDoCommand('cmd_copyLink');"/>
<menuitem id="dactyl-context-copy"
label="Copy" dactyl:group="selection"
command="cmd_copy"/>
<menuitem id="dactyl-context-selectall"
label="Select All"
command="cmd_selectAll"/>
</menupopup>
</popupset>