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

@@ -210,12 +210,8 @@ function dispatch (action, ...args) {
}
function setupIpc () {
ipcRenderer.on('addTorrent', function (e, torrentId) {
dispatch('addTorrent', torrentId)
})
ipcRenderer.on('seed', function (e, files) {
dispatch('seed', files)
ipcRenderer.on('dispatch', function (e, action, ...args) {
dispatch(action, ...args)
})
ipcRenderer.on('fullscreenChanged', function (e, isFullScreen) {