ソースを参照

Clipboard util: Fix copyString (#865)

Text in an invisible element cannot be copied.
Danilo Bargen 6 年 前
コミット
9fcd429923
1 ファイル変更3 行追加1 行削除
  1. 3 1
      src/helpers/clipboard.ts

+ 3 - 1
src/helpers/clipboard.ts

@@ -30,7 +30,9 @@ export function copyString(text: string, useSelectionRange: boolean = false): vo
     // Create temporary (and hidden) textarea element
     const textArea = document.createElement('textarea');
     textArea.value = text;
-    textArea.style.visibility = 'hidden';
+    textArea.style.position = 'absolute';
+    textArea.style.left = '-9999px';
+    textArea.style.top = '-9999px';
     document.body.appendChild(textArea);
     try {
         // Copy the text into the textarea element and select the text