From bd8a551d264eca08805923b72739e24f882661dd Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Sat, 29 Aug 2015 11:33:36 +0100 Subject: Minor tweaks (clipboard). 1. We're not using Clipboard in the the content scripts, so don't import it. 2. Use consistent syntax for method calls. This commit is a no-op. --- lib/clipboard.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/clipboard.coffee b/lib/clipboard.coffee index 2b28df70..5041cf49 100644 --- a/lib/clipboard.coffee +++ b/lib/clipboard.coffee @@ -16,7 +16,7 @@ Clipboard = document.body.removeChild(textArea) paste: -> - textArea = @._createTextArea() + textArea = @_createTextArea() document.body.appendChild(textArea) textArea.focus() document.execCommand("Paste") -- cgit v1.2.3