Index: trunk/admin/editor/cmseditor/fckeditor.js =================================================================== diff -u -r1974 -r2002 --- trunk/admin/editor/cmseditor/fckeditor.js (.../fckeditor.js) (revision 1974) +++ trunk/admin/editor/cmseditor/fckeditor.js (.../fckeditor.js) (revision 2002) @@ -27,7 +27,7 @@ // Properties this.InstanceName = instanceName ; this.Width = width || '100%' ; - this.Height = height || '200' ; + this.Height = height || '100%' ; this.ToolbarSet = toolbarSet || 'Default' ; this.Value = value || '' ; this.BasePath = '/fckeditor/' ; @@ -117,10 +117,11 @@ FCKeditor.prototype._GetIFrameHtml = function() { + var sLink = this.BasePath + 'editor/fckeditor.html?InstanceName=' + this.InstanceName ; if (this.ToolbarSet) sLink += '&Toolbar=' + this.ToolbarSet ; - return '' ; + } FCKeditor.prototype._IsCompatibleBrowser = function() Index: trunk/admin/editor/cmseditor/editor/fckeditor.html =================================================================== diff -u -r1974 -r2002 --- trunk/admin/editor/cmseditor/editor/fckeditor.html (.../fckeditor.html) (revision 1974) +++ trunk/admin/editor/cmseditor/editor/fckeditor.html (.../fckeditor.html) (revision 2002) @@ -44,7 +44,7 @@ @Packager.RemoveLine --> - +
Index: trunk/admin/editor/cmseditor/fckconfig.js =================================================================== diff -u -r1721 -r2002 --- trunk/admin/editor/cmseditor/fckconfig.js (.../fckconfig.js) (revision 1721) +++ trunk/admin/editor/cmseditor/fckconfig.js (.../fckconfig.js) (revision 2002) @@ -50,7 +50,7 @@ FCKConfig.FormatIndentator = ' ' ; FCKConfig.GeckoUseSPAN = true ; -FCKConfig.StartupFocus = false ; +FCKConfig.StartupFocus = true; FCKConfig.ForcePasteAsPlainText = true ; FCKConfig.ForceSimpleAmpersand = false ; FCKConfig.TabSpaces = 0; Index: trunk/admin/editor/cmseditor/fckeditor.php =================================================================== diff -u -r1416 -r2002 --- trunk/admin/editor/cmseditor/fckeditor.php (.../fckeditor.php) (revision 1416) +++ trunk/admin/editor/cmseditor/fckeditor.php (.../fckeditor.php) (revision 2002) @@ -35,7 +35,7 @@ $this->InstanceName = $instanceName ; $this->BasePath = '/FCKeditor/' ; $this->Width = '100%' ; - $this->Height = '200' ; + $this->Height = '100%' ; $this->ToolbarSet = 'Default' ; $this->Value = '' ; @@ -50,7 +50,6 @@ function CreateHtml() { $HtmlValue = htmlspecialchars( $this->Value ) ; - $Html = '
' ; if ( $this->IsCompatible() )