Rearrange CKEditor full toolbar and remove extra buttons

- CKEditor 업데이트 후 새로 추가된 버튼들 때문에 메뉴 줄이 넘어가는 문제 수정
- 웹상에서 활용도가 높지 않은 플래시 버튼, 새 페이지 버튼 등을 제거
- 관련이슈: #1585
This commit is contained in:
Kijin Sung 2021-01-29 10:23:44 +09:00
parent 3467250e17
commit 53a3096591

View file

@ -32,7 +32,7 @@ function getAutoSavedSrl(ret_obj, response_tags, c) {
{ name: 'document', groups: [ 'mode' ] },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
{ name: 'paragraph', groups: [ 'align', 'list', 'indent', 'blocks', 'bidi' ] },
'/',
{ name: 'styles' },
{ name: 'colors' },
@ -41,7 +41,7 @@ function getAutoSavedSrl(ret_obj, response_tags, c) {
],
allowedContent: true,
removePlugins: 'stylescombo,language,bidi,flash,pagebreak',
removeButtons: 'Save,Preview,Print,Cut,Copy,Paste',
removeButtons: 'Save,Preview,Print,Cut,Copy,Paste,Flash,NewPage,ExportPdf,Language',
uiColor: '#EFF0F0'
};