X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/1a51f254c2c899b068ecfca66fd472ae79fadda3..e28164ab55a10982219bd2a00a08010ef0bb8bcc:/src/wlxml/wlxml.js diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index 5925ee6..df93b3e 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -24,11 +24,23 @@ 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; + me.concat(this.parents()).some(function(node) { + if(_.isFunction(node.object.isContextRoot) && node.object.isContextRoot(this)) { + toret = true; + return true; + } + }.bind(this)); + return toret; + } }; var getClassLists = function(klassName) {