📄 正在查看:twcms/plugin/editor_um/umeditor/umeditor.config.js
大小:1,200 字节 · 修改:2013-12-27 00:48:48 · 行数:23
1(function() {
2 window.UMEDITOR_CONFIG = {
3 UMEDITOR_HOME_URL : window.UMEDITOR_HOME_URL
4
5 //图片上传配置区
6 ,imageUrl:window.admurl + "/index.php?u=attach-up_image&ajax=1" //图片上传提交地址
7 ,imagePath:window.weburl + "/" //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
8 ,imageFieldName:"upfile" //图片数据的key,若此处修改,需要在后台对应文件修改对应参数
9
10 //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的从新定义
11 ,toolbar:[
12 'source | undo redo | bold italic underline strikethrough | superscript subscript',
13 '| forecolor backcolor | justifyleft justifycenter justifyright | link unlink | removeformat',
14 '| insertorderedlist insertunorderedlist | fontfamily fontsize paragraph' ,
15 '| image insertvideo | map',
16 '| horizontal print preview fullscreen'
17 ]
18
19 ,initialFrameWidth:600
20 ,initialFrameHeight:200
21 };
22})();
23