张恒

删除多余注释

正在显示 1 个修改的文件 包含 0 行增加25 行删除
...@@ -19,28 +19,3 @@ app.on('window-all-closed', () => { ...@@ -19,28 +19,3 @@ app.on('window-all-closed', () => {
19 app.on('browser-window-created', () => { 19 app.on('browser-window-created', () => {
20 console.log('window-created') 20 console.log('window-created')
21 }) 21 })
22 -// app.on('activate', () => {
23 -// if (mainWindow === null) {
24 -// createWindow()
25 -// }
26 -// })
27 -
28 -/**
29 - * Auto Updater
30 - *
31 - * Uncomment the following code below and install `electron-updater` to
32 - * support auto updating. Code Signing with a valid certificate is required.
33 - * https://simulatedgreg.gitbooks.io/electron-vue/content/en/using-electron-builder.html#auto-updating
34 - */
35 -
36 -/*
37 -import { autoUpdater } from 'electron-updater'
38 -
39 -autoUpdater.on('update-downloaded', () => {
40 - autoUpdater.quitAndInstall()
41 -})
42 -
43 -app.on('ready', () => {
44 - if (process.env.NODE_ENV === 'production') autoUpdater.checkForUpdates()
45 -})
46 - */
......