admin/editor/fckeditor.php
sablog的FCKeditor默认的是
$this->ToolbarSet = 'Default' ;改为
$this->ToolbarSet = 'Basic' ;admin/editor/fckconfig.js可以设置需要加载的东东
FCKConfig.ToolbarSets["Default"] = [Basic的东东好像也太小了点,不过够用就行了,不行再加一点
['Style','FontFormat','FontName','FontSize'],
['TextColor','BGColor'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Bold','Italic','Underline','Subscript','Superscript'],
['Undo','Redo'],
'/',
['Source','Preview'],
['Cut','Copy','Paste','PasteText','PasteWord'],
['OrderedList','UnorderedList','Outdent','Indent'],
['Link','Unlink','Anchor'],
['Image','Flash','Table','Rule','SpecialChar']
] ;FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','OrderedList','UnorderedList','Link','Unlink']
] ;
['Style','FontFormat','FontName','FontSize','TextColor','BGColor','JustifyLeft','JustifyCenter',http://www.luoq.net/admin/editor/
'JustifyRight','PasteWord','Bold','Underline','OrderedList','UnorderedList','Link','Unlink','Image',
'Flash','Table','Rule','SpecialChar','Preview','Source']
下面这个是设置默认展开/折叠工具栏的状态
设置为默认折叠
FCKConfig.ToolbarStartExpanded = false ; //true/false默认展开/折叠工具栏这样,加载的时候速度又快了一些


