electron-event-flux
Advanced tools
Comparing version 0.7.8 to 0.7.9
@@ -17,3 +17,3 @@ 'use strict'; | ||
var clientId = window.clientId; | ||
var clientId = window.clientId || 'mainClient'; | ||
@@ -20,0 +20,0 @@ var mainWin = window.isMainClient ? window : window.parent; |
@@ -36,2 +36,3 @@ 'use strict'; | ||
} | ||
genUrl.search += '&isSlave=1'; | ||
return genUrl.toString(); | ||
@@ -38,0 +39,0 @@ } |
{ | ||
"name": "electron-event-flux", | ||
"version": "0.7.8", | ||
"version": "0.7.9", | ||
"description": "Redux store which synchronizes between instances in multiple process", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -5,3 +5,3 @@ const { renderDispatchName, renderRegisterName, mainDispatchName, mainInitName } = require('./constants'); | ||
constructor(filter, callback, onGetAction) { | ||
let clientId = window.clientId; | ||
let clientId = window.clientId || 'mainClient'; | ||
@@ -8,0 +8,0 @@ let mainWin = window.isMainClient ? window : window.parent; |
@@ -11,2 +11,3 @@ import StoreBase from 'event-flux/lib/StoreBase'; | ||
} | ||
genUrl.search += '&isSlave=1'; | ||
return genUrl.toString(); | ||
@@ -13,0 +14,0 @@ } |
133358
2872