Share Pastebin
Guest
Public paste!

fredck

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