diff options
| author | Stephen Blott | 2017-11-25 07:29:09 +0000 |
|---|---|---|
| committer | GitHub | 2017-11-25 07:29:09 +0000 |
| commit | 58f45ac17938e2984b3d3b83c8aed452f1287498 (patch) | |
| tree | 505bbdf7678a6b0019785874b7e14f3f56515048 /pages/help_dialog.coffee | |
| parent | def334e3647136c23c8825d0f04a5f04eba3d9bc (diff) | |
| parent | c8a395481eeb950c8725e3d6e0fa58510cb407aa (diff) | |
| download | vimium-58f45ac17938e2984b3d3b83c8aed452f1287498.tar.bz2 | |
Merge pull request #2601 from mrmr1993/ff-copy-paste
Enable Firefox clipboard commands
Diffstat (limited to 'pages/help_dialog.coffee')
| -rw-r--r-- | pages/help_dialog.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/help_dialog.coffee b/pages/help_dialog.coffee index f36155e4..08180a72 100644 --- a/pages/help_dialog.coffee +++ b/pages/help_dialog.coffee @@ -83,7 +83,7 @@ HelpDialog = commandNameElement.textContent = command.command commandNameElement.title = "Click to copy \"#{command.command}\" to clipboard." commandNameElement.addEventListener "click", -> - chrome.runtime.sendMessage handler: "copyToClipboard", data: commandNameElement.textContent + HUD.copyToClipboard commandNameElement.textContent HUD.showForDuration("Yanked #{commandNameElement.textContent}.", 2000) @showAdvancedCommands(@getShowAdvancedCommands()) |
