From: Aleksander Ɓukasz Date: Mon, 25 Nov 2013 13:43:03 +0000 (+0100) Subject: Handle root node sent to findCanvasElementInParent X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/e1d74f78a57e5d6e21efa8de4bed6073f645612b Handle root node sent to findCanvasElementInParent --- diff --git a/src/editor/modules/documentCanvas/canvas/utils.js b/src/editor/modules/documentCanvas/canvas/utils.js index 9f5ee46..caa9af4 100644 --- a/src/editor/modules/documentCanvas/canvas/utils.js +++ b/src/editor/modules/documentCanvas/canvas/utils.js @@ -35,13 +35,21 @@ var findCanvasElement = function(node) { * and it lost reference to its parent (but we may still have it on canvas). */ var findCanvasElementInParent = function(wlxmlChildNode, wlxmlParentNode) { - var parentElement = findCanvasElement(wlxmlParentNode), - toret; - parentElement.children().forEach(function(child) { - if(child.data('wlxmlNode').sameNode(wlxmlChildNode)) { - toret = child; + var parentElement, toret; + + if(wlxmlParentNode === null) { + toret = wlxmlChildNode.getData('canvasElement'); + if(toret.parent()) { + throw new Error('This should never happen: root canvas element doesn\'t render root document node!'); } - }); + } else { + parentElement = findCanvasElement(wlxmlParentNode); + parentElement.children().forEach(function(child) { + if(child.data('wlxmlNode').sameNode(wlxmlChildNode)) { + toret = child; + } + }); + } return toret; };