diff options
| author | Stephen Blott | 2015-06-22 05:46:26 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-06-22 05:46:26 +0100 |
| commit | f9939fdb5b8527c1b0ce92fd990472a4c95b6336 (patch) | |
| tree | 3dbf8898b9c72d7d6fa5cbb02cc660943dc3ac33 | |
| parent | 83abcadc85f27f251a691a51c868edfa13e1b73e (diff) | |
| parent | 7777155e199af2bf3b887e54c9874a1a04509524 (diff) | |
| download | vimium-f9939fdb5b8527c1b0ce92fd990472a4c95b6336.tar.bz2 | |
Merge pull request #1747 from gdh1995/master
fix a bug that `pasteFromClipboard` does not return text from clipboard
| -rw-r--r-- | background_scripts/main.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee index d4b14f3c..28959d35 100644 --- a/background_scripts/main.coffee +++ b/background_scripts/main.coffee @@ -217,7 +217,7 @@ openUrlInIncognito = (request) -> # We return null to avoid the return value from the copy operations being passed to sendResponse. # copyToClipboard = (request) -> Clipboard.copy(request.data); null -pasteFromClipboard = (request) -> Clipboard.paste(); null +pasteFromClipboard = (request) -> Clipboard.paste() # # Selects the tab with the ID specified in request.id |
