This commit is contained in:
Andreas Österreicher
2011-12-22 13:23:12 +00:00
parent cdf8fd860b
commit 0a0ab6656f
+1 -1
View File
@@ -150,7 +150,7 @@ var SOAPObject = function(name) {
this.name=name;
this.attributes=[];
this.children=[];
this.value=null;v
this.value=null;
this.attr=function(name, value){this.attributes.push({"name":name, "value":value});return this;};
this.appendChild=function(obj){this.children.push(obj);return obj;};
this.hasChildren=function(){return (this.children.length > 0)?true:false;};