﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9199	filebrowser throws element is undefined because fails to correctly check what  attachFileBrowser is looking at	TomChiverton		"in http://dev.ckeditor.com/browser/CKEditor/trunk/_source/plugins/filebrowser/plugin.js#L249
this
{{{
if ( element.type == 'hbox' || element.type == 'vbox' || element.type == 'fieldset' ) 
}}}
should be something like
{{{
if ( element == undefined ) continue;
if ( element.type == 'hbox' || element.type == 'vbox' || element.type == 'fieldset' ) 
}}}
otherwise random apparently unrelated things like the link create/edit dialogue cause a RTE.

Often happens when CKEditor is used as a component in some other visual framework i.e. Ember"	Bug	confirmed	Normal		File Browser	3.0			
