This commit is contained in:
Cheng Zhao 2017-05-31 16:39:53 +09:00
Родитель 5fa2831756
Коммит 9d4588a5d0
1 изменённых файлов: 1 добавлений и 11 удалений

Просмотреть файл

@ -1,4 +1,4 @@
const {app, BrowserWindow, Notification} = require('electron')
const {app, BrowserWindow} = require('electron')
const path = require('path')
let mainWindow = null
@ -27,15 +27,5 @@ exports.load = (appUrl) => {
mainWindow = new BrowserWindow(options)
mainWindow.loadURL(appUrl)
mainWindow.focus()
const n = new Notification({
title: 'Foo',
body: 'Bar',
hasReply: true,
replyPlaceholder: 'foo'
})
n.on('reply', (...args) => console.log('reply', ...args))
n.on('click', (...args) => console.log('click', ...args))
n.show()
})
}