WYSIWYG Editor XBL für Notizen im Planner

This commit is contained in:
Andreas Österreicher
2011-12-15 16:13:26 +00:00
parent 6e7fa788a1
commit b207d25013
11 changed files with 171 additions and 11 deletions
+3 -2
View File
@@ -150,10 +150,11 @@ var SOAPObject = function(name) {
this.name=name;
this.attributes=[];
this.children=[];
this.value=null;
this.value=null;v
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;};
this.val=function(v){if(!v){return this.value;}else{this.value=v;return this;}};
this.cdataval=function(v){if(!v){return this.value;}else{this.value='<![CDATA['+v+']]>';return this;}};
this.toString=function(){return SOAPClient.ToXML(this);};
};
};