에디터 입력화면 세로 높이 수정 smarteditor2, ckeditor4, cheditor5 - 그누보드팁

본문 바로가기
전체검색

그누보드팁

그누보드, 영카트 초보 제작자분들을 위한 다양한 스킨 제작 활용 팁을 공유합니다.

에디터 입력화면 세로 높이 수정 smarteditor2, ckeditor4, cheditor5

관리자 18-09-14 08:47

에디터 입력 화면 세로 영역을 수정하는 방법입니다.

에디터는 게시판 설정에서 DHTML 에디터 사용을 체크해야 활성화됩니다.


4ef687bc8b45902ae1e27470901dd7ed_1536881931_1471.png 



1. smarteditor2 수정 방법


수정 파일 : /plugin/editor/smarteditor2/editor.lib.php


아래 내용에서 height:300px 부분을 원하는 값으로 수정


$html .= "\n<textarea id=\"$id\" name=\"$id\" class=\"$smarteditor_class\" maxlength=\"65536\" style=\"width:100%;height:300px\">$content</textarea>";



그리고 세로 높이를 아주 작게 하려면 한군데 더 체크해야 합니다.

원하는 크기가 세로 205px 이상이면 다음 내용은 수정하지 않아도 됩니다.


/plugin/editor/smarteditor2/js/service/SE2BasicCreator.js


위 파일 내용 중에서 nMinHeight:205 값 수정


var htDimension = {
    nMinHeight:205,
    nMinWidth:parseInt(elIRField.style.minWidth, 10)||570,
    nHeight:elIRField.style.height||elIRField.offsetHeight,
    nWidth:elIRField.style.width||elIRField.offsetWidth
};



2. ckeditor4 수정 방법


그누보드 5.3용 CKEditor 는 여기에서 다운받을 수 있습니다.

https://sir.kr/g5_plugin/3689


수정 파일 : /plugin/editor/ckeditor4/config.js


아래 내용을 찾은 후 height 값 수정


// 에디터 높이 설정
if(g5_is_mobile) {
 //--- 모바일 ---//
 config.height = '200px';
} else {
 //--- PC ---//
 config.height = '300px';
}



3. cheditor5 수정 방법


수정 파일 : /plugin/editor/cheditor5/editor.lib.php


아래 내용을 찾은 후 height 값 수정


$height = isset($editor_height) ? $editor_height : "250px";

로그인 후 댓글 작성 가능합니다.

로그인

로그인 후 글 작성 가능합니다.
그누스킨닷컴

그누스터디는 그누보드, 영카트를 이용하시는 초보 사용자를 위한 정보를 공유합니다.

E-MAIL : gnustudy@naver.com / 카카오톡 : gnustudy / 텔레그램 : gnustudy
제작 문의를 제외한 일반 문의는 QA 게시판을 이용해주세요.

Copyright gnustudy.com All rights reserved.