The forum operates in read-only mode. Please head to StackOverflow for support.
Please take a look at the following patch:https://sourceforge.net/tracker/index.p ... tid=543655Best regards,FredCK
Frederico Knabben CKEditor Project Lead and CKSource Owner -- Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Test 004 Fails in Firefox
Please take a look at the following patch:
https://sourceforge.net/tracker/index.p ... tid=543655
Best regards,
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: Test 004 Fails in Firefox
your patch does solve the problem on Gecko, except for one situation: multiple FCK editors within the hidden div..
If i loop over the instances and execute MakeEditable, it only works for the first instance it encounters. Code goes like this:
for(instanceName in FCKeditorAPI.__Instances) {
instance = FCKeditorAPI.GetInstance(instanceName);
if(instance.EditMode == FCK_EDITMODE_WYSIWYG) {
instance.MakeEditable();
}
}
RE: Test 004 Fails in Firefox
RE: Test 004 Fails in Firefox
you will have to refresh the page manually once then you can focus or makeEditable.