#1087 에디터 미리보기 문제 수정 및 toolbarCanCollapse 옵션 활성화

This commit is contained in:
bnu 2015-02-27 15:19:52 +09:00
parent 571ebc37d3
commit 82a833a60d

View file

@ -69,6 +69,7 @@
var ckconfig = {
height: '{$editor_height}',
bodyClass: 'xe_content editable',
toolbarCanCollapse: true,
toolbarGroups: [
{ name: 'clipboard', groups: [ 'undo', 'clipboard' ] },
{ name: 'editing', groups: [ 'find', 'selection' ] },
@ -121,8 +122,8 @@
// uploader
$(function () {/**/
var setting = {
maxFileSize: {$file_config->allowed_filesize},
limitMultiFileUploadSize: {$file_config->allowed_filesize},
maxFileSize: {$file_config->allowed_filesize || 'null'},
limitMultiFileUploadSize: {$file_config->allowed_filesize || 'null'},
};
var uploader = $('#xe-uploader-container-{$editor_sequence}').xeUploader(setting);
});