Open signorpipo opened 3 years ago
I need to copy to the clipboard from within my HTML game, but on itch the iFrame require extra permissions to let the writeText works.
It seems that for this it is required to specify something as follow: <iframe src="index.html" allow="clipboard-write"></iframe>
<iframe src="index.html" allow="clipboard-write"></iframe>
I found out that document.execCommand("copy"); method works. At least in Chrome.
document.execCommand("copy");
I need to copy to the clipboard from within my HTML game, but on itch the iFrame require extra permissions to let the writeText works.
It seems that for this it is required to specify something as follow:
<iframe src="index.html" allow="clipboard-write"></iframe>