refactor
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Fri, 27 Sep 2013 08:00:59 +0000 (10:00 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 9 Oct 2013 14:56:55 +0000 (16:56 +0200)
src/smartxml/smartxml.js

index 2d0e09f..b7fc3f1 100644 (file)
@@ -43,14 +43,6 @@ $.extend(ElementNode.prototype, DocumentNode.prototype, {
         return this.nativeNode.tagName.toLowerCase();
     },
 
-    append: function(documentNode) {
-        this._$.append(documentNode.nativeNode);
-    },
-
-    before: function(node) {
-        this._$.before(node.nativeNode);
-    },
-
     contents: function() {
         var toret = [];
         this._$.contents().each(function() {
@@ -70,6 +62,14 @@ $.extend(ElementNode.prototype, DocumentNode.prototype, {
         return new ElementNode(this._$.parent());
     },
 
+    append: function(documentNode) {
+        this._$.append(documentNode.nativeNode);
+    },
+
+    before: function(node) {
+        this._$.before(node.nativeNode);
+    },
+
     unwrapContent: function() {
         var parent = this.parent();
         if(!parent)