Opened 11 years ago

Last modified 11 years ago

#10444 confirmed Bug

The order of several events differs among creators

Reported by: Olek Nowodziński Owned by:
Priority: Low Milestone:
Component: General Version: 4.0 Beta
Keywords: Cc:

Description (last modified by Jakub Ś)

Extracted from ticket:10370#comment:3.

Most likely this issue requires lots of coding with no significant improvement to the editor.

Problem is that
inline loads: dataReady, contentDom
framed loads: contentDom, dataReady

This can be checked with:

var editor = CKEDITOR.inline( 'editable' );
	editor.on('contentDom', function(){
		console.log('contentDom');
	});
	editor.on('dataReady', function(){
		console.log('dataReady');
	});

Change History (1)

comment:1 Changed 11 years ago by Jakub Ś

Description: modified (diff)
Status: newconfirmed
Version: 4.0 Beta
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy