smallwat3r/shhh

View on GitHub
shhh/static/src/js/created.js

Summary

Maintainability
A
0 mins
Test Coverage
copy.addEventListener("click", (_) => {
  link.select();
  link.setSelectionRange(0, 99999); // mobile
  document.execCommand("copy");
  copy.textContent = "copied";
  copy.classList.replace("is-warning", "is-primary");
});