Ghost/ghost/admin/app/utils/copy-text-to-clipboard.js
Kevin Ansfield 6155645a45 🐛 Fixed copy-to-clipboard buttons in Chrome + Firefox
no issue

- the method we used for copying text to the clipboard for older browsers has broken on some newer browsers
- the more modern `navigator.clipboard.writeText` API is now universally supported by our target browsers so we're able to switch to that instead which is working across the board
2021-10-05 15:32:23 +01:00

4 lines
95 B
JavaScript

export default function copyTextToClipboard(text) {
navigator.clipboard.writeText(text);
}