mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 19:42:56 +01:00
Reorganize, add webpack sample
This commit is contained in:
parent
f692f47f73
commit
f22dfb79ba
26 changed files with 8904 additions and 9 deletions
28
electron-amd/main.js
Normal file
28
electron-amd/main.js
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
const electron = require('electron')
|
||||
const app = electron.app
|
||||
const BrowserWindow = electron.BrowserWindow
|
||||
|
||||
let mainWindow;
|
||||
|
||||
function createWindow () {
|
||||
mainWindow = new BrowserWindow({width: 800, height: 600})
|
||||
mainWindow.loadURL(`file://${__dirname}/electron-index.html`)
|
||||
mainWindow.webContents.openDevTools()
|
||||
mainWindow.on('closed', function () {
|
||||
mainWindow = null
|
||||
})
|
||||
}
|
||||
|
||||
app.on('ready', createWindow)
|
||||
|
||||
app.on('window-all-closed', function () {
|
||||
if (process.platform !== 'darwin') {
|
||||
app.quit()
|
||||
}
|
||||
})
|
||||
|
||||
app.on('activate', function () {
|
||||
if (mainWindow === null) {
|
||||
createWindow()
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue