diff --git a/frontend/app/player/MessageDistributor/managers/WindowNodeCounter.js b/frontend/app/player/MessageDistributor/managers/WindowNodeCounter.js index d3e0fd394..245ac9084 100644 --- a/frontend/app/player/MessageDistributor/managers/WindowNodeCounter.js +++ b/frontend/app/player/MessageDistributor/managers/WindowNodeCounter.js @@ -57,11 +57,12 @@ export default class WindowNodeCounter { addNode(id: number, parentID: number) { if (!this._nodes[ parentID ]) { - console.error(`Wrong! Node with id ${ parentID } (parentId) not found.`); + //TODO: iframe case + //console.error(`Wrong! Node with id ${ parentID } (parentId) not found.`); return; } if (!!this._nodes[ id ]) { - console.error(`Wrong! Node with id ${ id } already exists.`); + //console.error(`Wrong! Node with id ${ id } already exists.`); return; } this._nodes[id] = this._nodes[ parentID ].newChild();