최근에 모바일에서 자꾸 잡오류가 많이 뜨네요.
안드로이드 폰에서는 ckeditor가 정상적으로 출력 되는데
아이폰에선 로딩이 안되네요;;
개발자도구 보면
Uncaught TypeError: Cannot read property 'replace' of null
at HTMLDocument.<anonymous> (index.php?mid=change&act=dispBoardWrite:277)
at fire (jquery-2.2.4.js?20200723173339:3187)
at Object.fireWith [as resolveWith] (jquery-2.2.4.js?20200723173339:3317)
at Function.ready (jquery-2.2.4.js?20200723173339:3536)
at HTMLDocument.completed (jquery-2.2.4.js?20200723173339:3552)
이런 오류가 뜨고 index.php?mid=change&act=dispBoardWrite:277 찾아 가보면
$('head').append('<st' + 'yle>' + additional_styles + css_content.replace(/\.xe_content\.editable/g, '.cke_wysiwyg_div') + '</st' + 'yle>');
위 부분이 문제가 되네요..
modules/editor/skins/ckeditor/editor.html 29번째 줄 전후
{@ $css_content = null }
이 부분을
{@ $css_content = "" }
이렇게 바꿔주세요.