﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2927	CKEDITOR.event duplicate dom event registration	Garry Yao		"Dom event delegation registration is currently incorrect, if the specified event were registered twice, the listener function suffer from duplicate invocation.
Reproduce Steps:
 1. Open one editor page in FF
 1. Execute the following codes through console:
{{{
	var body = CKEDITOR.document.getBody();
	body.on('click', function(){
		alert('first');
	});
	body.on('click', function(){
		alert('another');
	});
}}}
 1. Every listener was invoked twice.	"	Bug	new	Must have (possibly next milestone)	CKEditor 3.0	General	SVN (FCKeditor) - Retired			
