CKEditor之配置文件config.js

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ){
// 界面語言,默認爲 'en'
config.language = 'zh-cn';


// 編輯器樣式,有三種:'kama'(默認)、'office2003'、'v2'
config.skin = 'kama';


// 背景顏色
config.uiColor = '#C4D8ED';


// 工具欄(基礎'Basic'、全能'Full'、自定義)plugins/toolbar/plugin.js
config.toolbar = 'Basic';


config.toolbar_Basic = [
//['Source','-','Bold','Italic','RemoveFormat','Cut','Copy','Paste','PasteText','PasteFromWord'], ['Maximize']
['Source','-','Bold','Italic','RemoveFormat','Cut','Copy','Paste','PasteText','PasteFromWord'],
        ['Image','Table'],['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
        ['Format','FontSize'],['Maximize']
];


config.height = 300; //高度


config.toolbar = 'Full';


//這將配合:
config.toolbar_Full = [
['Source','-','Preview','Templates'],
['Cut','Copy','Paste','PasteText','PasteFromWord'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],['TextColor','BGColor'],
['-','Outdent','Indent','Blockquote','-','Subscript','Superscript','NumberedList','BulletedList',],
['Link','Unlink'],
'/',
['Bold','Italic','Underline','Strike','-',],['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Styles','Format','Font','FontSize'],
['Image','Flash','Table','HorizontalRule','SpecialChar','PageBreak'], ['Maximize']
];


//config.filebrowserImageBrowseUrl = '/FileManage.php?action=Show&Return_Type=2&getajax=true';
//config.filebrowserFlashBrowseUrl = '/FileManage.php?action=Show&Return_Type=2&getajax=true';
config.filebrowserUploadUrl =  './upload_imgfile.php';
config.enterMode = CKEDITOR.ENTER_BR;
};
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章