mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-20 00:12:15 +00:00
WYSIWYG Editor XBL für Notizen im Planner
This commit is contained in:
@@ -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);};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user