allow the main process to dispatch any event to the renderer

This commit is contained in:
Feross Aboukhadijeh
2016-03-09 02:36:10 -08:00
parent fe524f8432
commit 944a47be72
3 changed files with 5 additions and 9 deletions

View File

@@ -37,5 +37,5 @@ ipc.init()
function onOpen (e, torrentId) {
e.preventDefault()
windows.main.send('addTorrent', torrentId)
windows.main.send('dispatch', 'addTorrent', torrentId)
}