diff options
| author | Stephen Blott | 2015-08-29 11:33:36 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-08-29 11:33:39 +0100 | 
| commit | bd8a551d264eca08805923b72739e24f882661dd (patch) | |
| tree | c8d2edec5887625bb55d9bf73809b4aa3cf62ee3 /lib | |
| parent | c08e59ea14c5b691a20a62d204456a8496258d0f (diff) | |
| download | vimium-bd8a551d264eca08805923b72739e24f882661dd.tar.bz2 | |
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.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/clipboard.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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") | 
