Ive just downloaded the lastest version. Im having a problem with adding an image, hyperlink, smiley's etc. In Firefox v1.0, I get a window that says "variable undefined". Everything works fine in IE. Ive read somewhere that there is a patch for this issue. Can anyone help me?
Mon, 01/31/2005 - 17:22
#1
RE: FCKeditor Firefox issues
I had a problem with a few toolbar buttons in the config file (fckeditor.js):
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
As I didn't need thos, I simply removed them, so the toolbar now looks like:
FCKConfig.ToolbarSets["standaard"] = [
['Source','-','Save','NewPage','Preview'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink'],
['Image','Table','Rule','SpecialChar','Smiley'],
['About']
] ;
And suddenly Firefox liked FCKeditor
RE: FCKeditor Firefox issues