Using the editor in mozilla. If you use enter(once) after a <h1></h1> code (maybe also after other code) and you look at the code, this appears in the code:
<br _moz_dirty="" type="_moz"/><br _moz_dirty="" type="_moz"/>
?? looks like a bug.
<br _moz_dirty="" type="_moz"/><br _moz_dirty="" type="_moz"/>
?? looks like a bug.
RE: _moz dirty in mozilla
RE: _moz dirty in mozilla
if ( ! document.all )
oFCKeditor.Config['EnableXHTML'] = false ;
Place that before calling .Create() and you should be okay
RE: _moz dirty in mozilla
Thanks.
RE: _moz dirty in mozilla
<script type="text/javascript">
<!--
var oFCKeditor = new FCKeditor('text');
if (!document.all)
oFCKeditor.Config['EnableXHTML'] = false;
oFCKeditor.Create();
//-->
</script>
RE: _moz dirty in mozilla
Like so:
// Enable XHTML support
// FCKConfig.EnableXHTML = true ;
FCKConfig.EnableXHTML = false ;
FCKConfig.EnableSourceXHTML = true ;
It isn't a bug, per say(sp?;).