X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/7a55de7fa64363dcc4bdcf31dabe2e155018597a..c193c33cf3e10b222a47de0b971573b66b495cfc:/src/wlxml/wlxml.js diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index c38810d..262004c 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -24,14 +24,18 @@ var WLXMLDocumentNodeMethods = { me.concat(this.parents()).some(function(node) { if(node.is(query)) { toret = node; - return true; } - }); + return !!toret || (!node.sameNode(this) && node.isContextRoot()); + }.bind(this)); + return toret; }, isContextRoot: function() { var me = this.nodeType === Node.ELEMENT_NODE ? [this] : [], toret = false; + if(!this.parent()) { + return true; + } me.concat(this.parents()).some(function(node) { if(_.isFunction(node.object.isContextRoot) && node.object.isContextRoot(this)) { toret = true;