From c782c7a4d11b830dd1c6efed0b382e33b56a790b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Mon, 17 Feb 2014 10:18:11 +0100 Subject: [PATCH] smartxml: helper functions --- src/smartxml/smartxml.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/smartxml/smartxml.js b/src/smartxml/smartxml.js index 628163a..dcecc64 100644 --- a/src/smartxml/smartxml.js +++ b/src/smartxml/smartxml.js @@ -78,6 +78,10 @@ $.extend(DocumentNode.prototype, { return this.document.root.sameNode(this); }, + isSiblingOf: function(node) { + return node && this.parent().sameNode(node.parent()); + }, + sameNode: function(otherNode) { return !!(otherNode) && this.nativeNode === otherNode.nativeNode; }, @@ -143,6 +147,10 @@ $.extend(DocumentNode.prototype, { return 0; } return this.parent().indexOf(this); + }, + + getNearestElementNode: function() { + return this.nodeType === Node.ELEMENT_NODE ? this : this.parent(); } }); -- 2.20.1