Change delimiter to "_" from ":"

This commit is contained in:
Hiroki Uchikawa 2018-03-16 06:06:06 +09:00 committed by HirokiUchikawa
parent e66b381070
commit b4b70a988e
1 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ function createContext(id,seed) {
function getContext(localId,flowId) { function getContext(localId,flowId) {
var contextId = localId; var contextId = localId;
if (flowId) { if (flowId) {
contextId = localId+":"+flowId; contextId = localId+"_"+flowId;
} }
if (contexts.hasOwnProperty(contextId)) { if (contexts.hasOwnProperty(contextId)) {
return contexts[contextId]; return contexts[contextId];
@ -91,7 +91,7 @@ function getContext(localId,flowId) {
function deleteContext(id,flowId) { function deleteContext(id,flowId) {
var contextId = id; var contextId = id;
if (flowId) { if (flowId) {
contextId = id+":"+flowId; contextId = id+"_"+flowId;
} }
delete contexts[contextId]; delete contexts[contextId];
} }
@ -102,7 +102,7 @@ function clean(flowConfig) {
var node; var node;
for (var id in contexts) { for (var id in contexts) {
if (contexts.hasOwnProperty(id)) { if (contexts.hasOwnProperty(id)) {
var idParts = id.split(":"); var idParts = id.split("_");
if (!flowConfig.allNodes.hasOwnProperty(idParts[0])) { if (!flowConfig.allNodes.hasOwnProperty(idParts[0])) {
delete contexts[id]; delete contexts[id];
} }