X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/620a7d196ada7e95c73418e92715076cfed39f76..e789468531597875c9c171d0554230856d40a2b9:/src/wlxml/wlxml.js diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index cb43f07..40ab196 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -106,6 +106,16 @@ $.extend(WLXMLElementNode.prototype, WLXMLDocumentNodeMethods, smartxml.ElementN return child.is(query); }.bind(this)); }, + find: function(query) { + var doc = this.document; + return this._$.find('*') + .map(function() { + return doc.createDocumentNode(this); + }) + .filter(function() { + return this.is(query); + }); + }, _getXMLDOMToDump: function() { var DOM = this._$.clone(true, true),