add 'fetch-config' message handler

このコミットが含まれているのは:
Paul Frazee 2015-06-25 18:53:06 -05:00
コミット b459569dcf
2個のファイルの変更7行の追加0行の削除

ファイルの表示

@ -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 })

ファイルの表示

@ -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
});
}