Main navigation
Product navigation
Main content
CKEditor 4
Overview
Demo
Accessibility Checker
Add-ons
Documentation
Download
Pricing
More
Home
WYSIWYG Editors
CKEditor 4
CKEditor 5
Image upload
CKFinder
Easy Image
Collaboration
Comments
New
Track changes
New
Collaborative editing
Pricing
Case studies
New
Documentation
Help center
Blog
Contact us
The forum operates in
read-only
mode. Please head to
StackOverflow
for support.
Forums
CKEditor
Support
Last post
Thu, 04/21/2005 - 15:53
#1
trapp123
Joined:
16/04/2005
Posts:
13
BUG (?) for FF:
http://www.mywebsite.com/path/to/fck/ed ... gecko_1.js
Thu, 04/21/2005 - 15:36
#2
trapp123
Joined:
16/04/2005
Posts:
13
RE: BUG (?) for FF:
oh, the function causing the problem is:
L40: FCK.MakeEditable=function(){
L41: this.EditorWindow.document.designMode='on';
L42: this.EditorWindow.document.execCommand('useCSS',false,!FCKConfig.GeckoUseSPAN);};
if I comment out L41, then L42 throws the same error type just with a different text...
Thu, 04/21/2005 - 15:53
#3
trapp123
Joined:
16/04/2005
Posts:
13
RE: BUG (?) for FF:
ok, found something else out: The editor is in a <DIV> layer which is first set to hidden.
<div id="layer_html" style="visibility: hidden; display: none;">
I then focus on that layer using following link:
<a href="javascript:show_editbox('html');">HTML Mode</a>
If I click on that link before the line loads, fckeditor displays correctly. If I wait, then the JS error is called. Perhaps this is a bug-report more than a help-request ? If anyone has a solution please let me know.
Twitter
Facebook
Facebook
Instagram
Medium
Linkedin
GitHub
Arrow down
Phone
Menu
Close icon
Check
RE: BUG (?) for FF:
L40: FCK.MakeEditable=function(){
L41: this.EditorWindow.document.designMode='on';
L42: this.EditorWindow.document.execCommand('useCSS',false,!FCKConfig.GeckoUseSPAN);};
if I comment out L41, then L42 throws the same error type just with a different text...
RE: BUG (?) for FF:
<div id="layer_html" style="visibility: hidden; display: none;">
I then focus on that layer using following link:
<a href="javascript:show_editbox('html');">HTML Mode</a>
If I click on that link before the line loads, fckeditor displays correctly. If I wait, then the JS error is called. Perhaps this is a bug-report more than a help-request ? If anyone has a solution please let me know.