Changeset 815
- Timestamp:
- 04/14/07 20:53:19 (6 years ago)
- Files:
-
- 1 modified
-
trunk/XinhaCore.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/XinhaCore.js
r807 r815 4129 4129 }; 4130 4130 4131 /** Get the edited HTML 4132 * 4133 * @public 4134 * @returns {string} HTML content 4135 */ 4136 Xinha.prototype.getEditorContent = function() 4137 { 4138 return this.outwardHtml(this.getHTML()); 4139 } 4140 4141 /** Completely change the HTML inside 4142 * 4143 * @public 4144 * @param {string} html new content 4145 */ 4146 Xinha.prototype.setEditorContent = function(html) 4147 { 4148 this.setHTML(this.inwardHtml(html)); 4149 } 4150 4131 4151 // retrieve the HTML 4132 4152 Xinha.prototype.getHTML = function()
