* 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>
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			445 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			445 B
			
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
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()
 | 
						|
})
 |