pgweb/static/js/utils.js
2017-09-16 13:50:22 -05:00

13 lines
330 B
JavaScript

function copyToClipboard(text) {
const element = document.createElement("textarea");
element.style.display = "none;"
element.value = text;
document.body.appendChild(element);
element.focus();
element.setSelectionRange(0, element.value.length);
document.execCommand("copy");
document.body.removeChild(element);
}