묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
모바일에서 CK 에디터 기본 값 변경하려면 어떻게 하면 될까요?
2015.06.17 23:16
모바일에서는 툴바에서 꼭 필요한 툴 몇 개만 표시하고, 에디터 창 높이도 줄이고 싶은데 가능할까요?
가능하다면 어떻게 하면 되나요?
댓글 3
-
큰돌♡
2015.06.17 23:54
-
KOTRA1
2015.10.22 05:18
어느 파일인지 알 수 있을까요?
-
큰돌♡
2015.10.23 19:27
/common/js/plugins/ckeditor/ckeditor/config.js
파일을 수정했습니다.
var isMyMobile = false;
var mobileInfo = new Array('Android', 'iPhone', 'iPod', 'BlackBerry', 'Windows CE', 'SAMSUNG', 'LG', 'MOT', 'SonyEricsson');
for (var info in mobileInfo) {
if (navigator.userAgent.match(mobileInfo[info]) != null) {
isMyMobile = true;
break;
}
}
if(isMyMobile==true) {
CKEDITOR.editorConfig = function( config ) {
config.height = 높이;
config.toolbar = [[ '툴 이름','툴 이름' ]];
};
}
이런 식으로 하니 되네요.