fredck
By: a guest | Jul 15th, 2008 | Syntax:
None | Size: 0.70 KB | Hits: 195 | Expires: Never
Index: D:/FCKeditor/SVN/FCKeditor/local/editor/_source/internals/fck.js
===================================================================
--- D:/FCKeditor/SVN/FCKeditor/local/editor/_source/internals/fck.js (revision 2221)
+++ D:/FCKeditor/SVN/FCKeditor/local/editor/_source/internals/fck.js (working copy)
-1111,8 +1111,10 @@
{
if ( typeof( this.Elements[i] ) == 'string' )
{
- node.innerHTML = this.Elements[i] ;
- this.Elements[i] = node.firstChild ;
+ // For IE, we need to do this trick to avoid loosing comment
+ // only HTML.
+ node.innerHTML = '<div> </div>' + this.Elements[i] ;
+ this.Elements[i] = node.removeChild( node.childNodes[1] ) ;
}
}
}