Changes between Initial Version and Version 2 of Ticket #1654
- Timestamp:
- Dec 11, 2007, 8:57:57 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1654
- Property Keywords Pending added
-
Property
Version
changed from
to
FCKeditor 2.5
-
Ticket #1654 – Description
initial v2 2 2 3 3 I tracked it down to: 4 4 {{{ 5 5 if (E.contentWindow ) E.contentWindow.document.body.innerHTML=''; 6 6 }}} 7 7 Even I don´t know exactly what´s happening here the "style" seems not to be clean for me: Checking if an object exist and then accessing two levels deeper than checked. 8 8 9 9 I changed to: 10 10 {{{ 11 11 if (E.contentWindow && E.contentWindow.document && E.contentWindow.document.body ) E.contentWindow.document.body.innerHTML=''; 12 12 }}} 13 13 and now everything works as expected.