pgweb/static/js/utils.js

13 lines
330 B
JavaScript
Raw Normal View History

2017-09-16 13:50:22 -05:00
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);
}