feat: use navigator clipboard to copy text is possible
This commit is contained in:
parent
5275d365cb
commit
369bca90fc
1 changed files with 10 additions and 6 deletions
|
|
@ -5,10 +5,14 @@
|
|||
* @param content The content to be copied
|
||||
*/
|
||||
export function copyToClipboard(content: string) {
|
||||
const dummy = document.createElement("textarea")
|
||||
document.body.appendChild(dummy)
|
||||
dummy.value = content
|
||||
dummy.select()
|
||||
document.execCommand("copy")
|
||||
document.body.removeChild(dummy)
|
||||
if (navigator.clipboard) {
|
||||
navigator.clipboard.writeText(content)
|
||||
} else {
|
||||
const dummy = document.createElement("textarea")
|
||||
document.body.appendChild(dummy)
|
||||
dummy.value = content
|
||||
dummy.select()
|
||||
document.execCommand("copy")
|
||||
document.body.removeChild(dummy)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue