refactor
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 26 Sep 2013 15:29:49 +0000 (17:29 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 9 Oct 2013 14:56:54 +0000 (16:56 +0200)
src/smartxml/smartxml.js

index 8eeca1a..865f928 100644 (file)
@@ -19,12 +19,24 @@ var Document = function(nativeNode) {
 }
 
 
-var ElementNode = function(nativeNode) {
+var DocumentNode = function(nativeNode) {
     this.nativeNode = nativeNode;
     this._$ = $(nativeNode);
+}
+
+$.extend(DocumentNode.prototype, {
+    detach: function() { this._$.detach(); },
+
+    sameNode: function(otherNode) {
+        return this.nativeNode === otherNode.nativeNode;
+    }
+})
+
+var ElementNode = function(nativeNode) {
+    DocumentNode.apply(this, arguments);
 };
 
-$.extend(ElementNode.prototype, {
+$.extend(ElementNode.prototype, DocumentNode.prototype, {
     nodeType: Node.ELEMENT_NODE,
 
     getTagName: function() {
@@ -50,19 +62,10 @@ $.extend(ElementNode.prototype, {
         return toret;
     },
 
-
-    sameNode: function(otherNode) {
-        return this.nativeNode === otherNode.nativeNode;
-    },
-
     indexOf: function(node) {
         return this._$.contents().index(node._$);
     },
 
-    detach: function() {
-        this._$.detach();
-    },
-
     parent: function() {
         return new ElementNode(this._$.parent());
     },
@@ -114,17 +117,12 @@ $.extend(ElementNode.prototype, {
 });
 
 var TextNode = function(nativeNode) {
-    this.nativeNode = nativeNode;
-    this._$ = $(nativeNode);
+    DocumentNode.apply(this, arguments);
 }
 
-$.extend(TextNode.prototype, {
+$.extend(TextNode.prototype, DocumentNode.prototype, {
     nodeType: Node.TEXT_NODE,
 
-    detach: function() {
-        this._$.detach();
-    },
-
     getText: function() {
         return this.nativeNode.data;
     },