Radish alpha
r
Radicle website including documentation and guides
Radicle
Git (anonymous pull)
Log in to clone via SSH
L
Lorenz Leutgeb
perf: Move Scripts to Head and Defer 20 days ago cd875ccdd0653aa6d9fde7ec7e7307390bb84263 History
radicle.xyz assets js copy.js
const copyButton = document.getElementById("install");
const copyResult = document.getElementById("install-copy");
const textToCopy = document.getElementById("install-command").innerText;

copyButton.addEventListener("click", async function () {
  try {
    await navigator.clipboard.writeText(textToCopy);
    copyResult.innerText = "copied";
  } catch (err) {
    console.error("Failed to copy text: ", err);
  }
});