pg
/
sbot
1
0
Fork 0

add 'fetch-config' message handler

Esse commit está contido em:
Paul Frazee 2015-06-25 18:53:06 -05:00
commit b459569dcf
2 arquivos alterados com 7 adições e 0 exclusões

Ver arquivo

@ -25,6 +25,7 @@ app.on('ready', function ready () {
// open the web app
mainWindow = new BrowserWindow({width: 1000, height: 720})
// mainWindow.openDevTools()
mainWindow.loadUrl('file://' + path.join(__dirname, '../node_modules/ssbplug-phoenix/home.html'))
mainWindow.webContents.on('new-window', onNewWindow)
mainWindow.on('closed', function() { mainWindow = null })

Ver arquivo

@ -31,4 +31,10 @@ module.exports = function (sbot, window) {
pull(ipcPush, rpcStream, pull.drain(function (msg) {
window.webContents.send('muxrpc-ssb', msg)
}))
// setup helper messages
ipc.on('fetch-config', function(e) {
if (e.sender == window.webContents)
e.returnValue = sbot.config
});
}