From 7777155e199af2bf3b887e54c9874a1a04509524 Mon Sep 17 00:00:00 2001 From: gdh1995 Date: Mon, 22 Jun 2015 00:32:42 +0800 Subject: fix a bug that `pasteFromClipboard` does not return text from clipboard --- background_scripts/main.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'background_scripts') 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 -- cgit v1.2.3