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
25
docs/fiddles/system/clipboard/paste/main.js
Normal file
25
docs/fiddles/system/clipboard/paste/main.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
const { app, BrowserWindow } = require('electron')
|
||||
|
||||
let mainWindow = null
|
||||
|
||||
function createWindow () {
|
||||
const windowOptions = {
|
||||
width: 600,
|
||||
height: 400,
|
||||
title: 'Clipboard paste',
|
||||
webPreferences: {
|
||||
nodeIntegration: true
|
||||
}
|
||||
}
|
||||
|
||||
mainWindow = new BrowserWindow(windowOptions)
|
||||
mainWindow.loadFile('index.html')
|
||||
|
||||
mainWindow.on('closed', () => {
|
||||
mainWindow = null
|
||||
})
|
||||
}
|
||||
|
||||
app.on('ready', () => {
|
||||
createWindow()
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue