Ghost/ghost/admin/app/utils/copy-text-to-clipboard.js

12 lines
397 B
JavaScript
Raw Normal View History

export default function copyTextToClipboard(text) {
let textarea = document.createElement('textarea');
textarea.value = text;
textarea.setAttribute('readonly', '');
textarea.style.position = 'absolute';
textarea.style.left = '-9999px';
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
}