forked from Simnation/Main
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
![]() |
const copyToClipboard = (str) => {
|
||
|
const el = document.createElement("textarea");
|
||
|
el.value = str;
|
||
|
document.body.appendChild(el);
|
||
|
el.select();
|
||
|
document.execCommand("copy");
|
||
|
document.body.removeChild(el);
|
||
|
};
|
||
|
|
||
|
window.addEventListener("message", (event) => {
|
||
|
copyToClipboard(event.data.string);
|
||
|
});
|