forked from Simnation/Main
12 lines
323 B
JavaScript
12 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);
|
|
});
|