﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
39	Firefox: submenus in tables doesn't close on selection	Alfonso Martínez de Lizarrondo		"This is a regression as 2.3.2 works fine:
put a table and bring up the context menu to delete a column, click it and the column goes away as well as the main menu, but the submenu with options about columns (or rows ) remains on screen.

I've hunted it down to revision 97 in sourceforge, more exactly to this addition in FCKEditingArea.prototype.Focus :

{{{
			if ( this.Document.hasFocus() )
				return ;
}}}

As the log for that revision said that it was to fix a problem in IE I've changed to 

{{{
			if ( FCKBrowserInfo.IsIE && this.Document.hasFocus() )
				return ;
}}}

and now the submenu goes away in firefox.
"	Bug	closed	Must have (possibly next milestone)	FCKeditor 2.4	General		fixed		
