mirror of
https://github.com/iptv-org/iptv-org.github.io.git
synced 2025-05-11 17:40:05 -04:00
35 lines
617 B
Svelte
35 lines
617 B
Svelte
<script>
|
|
import { onMount, tick, createEventDispatcher } from 'svelte'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
export let text
|
|
|
|
let textarea
|
|
|
|
async function copy() {
|
|
textarea.select()
|
|
document.execCommand('Copy')
|
|
await tick()
|
|
textarea.blur()
|
|
dispatch('copy')
|
|
}
|
|
</script>
|
|
|
|
<slot {copy} />
|
|
<textarea bind:this={textarea} value={text} aria-hidden="true" tabindex="-1"></textarea>
|
|
|
|
<style>
|
|
textarea {
|
|
left: 0;
|
|
bottom: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
opacity: 0;
|
|
width: 1px;
|
|
height: 1px;
|
|
border: none;
|
|
display: block;
|
|
position: absolute;
|
|
}
|
|
</style>
|