docs: add clipboard Fiddle examples (#20445)
* docs: add clipboard paste Fiddle example * docs: add clipboard copy Fiddle example * docs: add appropriate title to Fiddles Co-Authored-By: John Kleinschmidt <jkleinsc@github.com>
This commit is contained in:
parent
d1c5c760d0
commit
ec87917f58
6 changed files with 117 additions and 0 deletions
10
docs/fiddles/system/clipboard/copy/renderer.js
Normal file
10
docs/fiddles/system/clipboard/copy/renderer.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
const { clipboard } = require('electron')
|
||||
|
||||
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.'
|
||||
clipboard.writeText('Electron Demo!')
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue