﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
38	The style combo doesn't update in Firefox like in IE	Alfonso Martínez de Lizarrondo	Alfonso Martínez de Lizarrondo	"This is due to this line:

{{{
	// For some reason Gecko is blocking inside the ""RefreshVisibleItems"" function.
	if ( ! FCKBrowserInfo.IsGecko )
		targetSpecialCombo.OnBeforeClick = this.RefreshVisibleItems ;

}}}

in FCKToolbarStyleCombo.prototype.CreateItems, but the fact is that only Firefox 1.0 seems to have this problem, so I've adjusted it in my branch to:


{{{
	// For some reason Gecko is blocking inside the ""RefreshVisibleItems"" function.
	// The problem is present only in old versions
	if ( !( FCKBrowserInfo.IsGecko && FCKBrowserInfo.IsGecko10 ) )
		targetSpecialCombo.OnBeforeClick = this.RefreshVisibleItems ;

}}}
"	Bug	closed	Normal	FCKeditor 2.4	General		fixed		
