aboutsummaryrefslogtreecommitdiffstats
path: root/general/clipboard.js
blob: cbcfa4ad3fba90bbf985085fe23101dd2304585c (about) (plain) (blame)
1
2
3
4
5
6
7
8
/* copy code to clipboard */
function CopyToClipboard(element) {
  element.style.filter = 'invert(1)';
  navigator.clipboard.writeText(element.firstElementChild.textContent);
  setTimeout(function() {
    element.style.filter = 'invert(0)';
  }, 100);
}