Changes between Initial Version and Version 1 of Ticket #10444
- Timestamp:
- Jun 3, 2013, 10:52:13 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10444
-
Property
Status
changed from
new
toconfirmed
-
Property
Version
changed from
to
4.0 Beta
-
Property
Status
changed from
-
Ticket #10444 – Description
initial v1 2 2 3 3 Most likely this issue requires lots of coding with no significant improvement to the editor. 4 5 Problem is that [[BR]] 6 inline loads: dataReady, contentDom [[BR]] 7 framed loads: contentDom, dataReady 8 9 This can be checked with: 10 {{{ 11 var editor = CKEDITOR.inline( 'editable' ); 12 editor.on('contentDom', function(){ 13 console.log('contentDom'); 14 }); 15 editor.on('dataReady', function(){ 16 console.log('dataReady'); 17 }); 18 }}}