builder.html.js
[app.Builder.js] / builder.html.js
index 9e031bb..3eaf929 100644 (file)
@@ -40,8 +40,9 @@ Builder  = {
             this.dialogroot.remove();
             this.dialogroot = false;
         }
-        if (this.layoutbase) {
-            this.layoutbase.remove();
+        if (this.layoutbase.el) {
+            console.dump(this.layoutbase);
+            
             this.layoutbase= false;
         }
          
@@ -265,8 +266,11 @@ Builder  = {
         
         if(typeof(arr) == 'object') { //Array/Hashes/Objects 
             for(var item in arr) {
-                var value = arr[item];
                 
+                var value = arr[item];
+                if (item == 'xns') {
+                    continue;
+                }
                 if(typeof(value) == 'function') { //If it is an array,
                     // fake dump...
                     dumped_text += level_padding + "'" + item + "' : function() { ... },\n";