﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
996	OnPaste listeners get executed twice	Frederico Caldeira Knabben	Frederico Caldeira Knabben	"When defining an OnPaste listener inline in the page, the target function get executed twice. It has been tested with IE7 only.

== Steps to Reproduce ==

1. Insert the following code at the top of sample01.html:

{{{
<script type=""text/javascript"">

function FCKeditor_OnComplete( editorInstance )
{
	editorInstance.Events.AttachEvent( 'OnPaste', myPasteListener ) ;
}

var myCounter = 0 ;

function myPasteListener( editorInstance )
{
	var textHtml = editorInstance.GetClipboardHTML() ;

	window.top.document.title = ++myCounter ;

	editorInstance.InsertHtml( textHtml.toLowerCase() ) ;

	return false ;
}
</script>
}}}

2. Open the page and try to paste. Note that the data is pasted twice, and the counter steps two numbers in the window title bar.
"	Bug	closed	Normal	FCKeditor 2.5 Beta	General	SVN (FCKeditor) - Retired	fixed	Confirmed	
