2019-10-10 13:48:33 +00:00
|
|
|
const copyBtn = document.getElementById('copy-to')
|
|
|
|
const copyInput = document.getElementById('copy-to-input')
|
|
|
|
|
|
|
|
copyBtn.addEventListener('click', () => {
|
|
|
|
if (copyInput.value !== '') copyInput.value = ''
|
|
|
|
copyInput.placeholder = 'Copied! Paste here to see.'
|
2023-04-24 14:35:14 +00:00
|
|
|
window.clipboard.writeText('Electron Demo!')
|
2019-10-10 13:48:33 +00:00
|
|
|
})
|