ckeditor config 精简配置

/*
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

CKEDITOR.editorConfig = function( config )
{
	 config.toolbar  =
    [
            ['Bold','Italic','Underline','Strike'],
            ['Font','FontSize','TextColor','BGColor'],
		    ['Link','Image'],
		    ['Smiley'],
		    ['Source']
		  
    ];
    config.skin='v2';
    config.width =800; //宽度 
    config.height = 300; //高度 
	config.language = 'zh-cn';
	config.uiColor = '#D9E1F7';
	config.font_names = '宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;'+ config.font_names ;
};

你可能感兴趣的:(html,C++,c,C#)