diff options
| author | mrmr1993 | 2017-08-15 17:55:49 +0100 |
|---|---|---|
| committer | mrmr1993 | 2017-11-18 12:40:37 +0000 |
| commit | 9c1e90b32e5df1d4e3e6f9af006561184d8d81e5 (patch) | |
| tree | 7c4d458b5dd8e6d565b6d7b8f7ddfefd4603fa1b | |
| parent | 448d609489f835162274f9ccef52918641927746 (diff) | |
| download | vimium-9c1e90b32e5df1d4e3e6f9af006561184d8d81e5.tar.bz2 | |
FF: Add contentEditable to clipboard operation textboxes
| -rw-r--r-- | lib/clipboard.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/clipboard.coffee b/lib/clipboard.coffee index 1d378e76..b37caf72 100644 --- a/lib/clipboard.coffee +++ b/lib/clipboard.coffee @@ -3,6 +3,7 @@ Clipboard = textArea = document.createElement "textarea" textArea.style.position = "absolute" textArea.style.left = "-100%" + textArea.contentEditable = "true" textArea # http://groups.google.com/group/chromium-extensions/browse_thread/thread/49027e7f3b04f68/f6ab2457dee5bf55 |
