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 | |
| 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.
| -rw-r--r-- | lib/clipboard.coffee | 2 | ||||
| -rw-r--r-- | manifest.json | 1 |
2 files changed, 1 insertions, 2 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") diff --git a/manifest.json b/manifest.json index 4ef5edfe..dad56407 100644 --- a/manifest.json +++ b/manifest.json @@ -40,7 +40,6 @@ "lib/dom_utils.js", "lib/rect.js", "lib/handler_stack.js", - "lib/clipboard.js", "lib/settings.js", "lib/find_mode_history.js", "content_scripts/ui_component.js", |
