출처:http://kgpark.net/tools/tag/cheditor?TSSESSION=69fec44b2c87720847c6415e11a8668b
그누보드에서 cheditor 를 잘 사용하고 있는데요..
편집모드에서 submit 할때 문제가 있네요.
최신 버전에서는 문제가 없는 것으로 판단됩니다만..
예전 버젼에서는 문제가 있네요..
아래 부분 수정해 주세요
// cheditor.js 파일의 1155번째
resetViewHTML : function () {
var chkViewHtml = document.getElementById("chkDisplayMode");
if (chkViewHtml != null && chkViewHtml.checked) {
chkViewHtml.checked = false;
this.setDisplayMode();
}
},
-->
resetViewHTML : function ()
{
if (this.currentMode == 'code') {
this.putContents(this.makeHtmlContent());
this.currentMode = 'rich';
}
},
var chkViewHtml = document.getElementById("chkDisplayMode");
if (chkViewHtml != null && chkViewHtml.checked) {
chkViewHtml.checked = false;
this.setDisplayMode();
}
},
resetViewHTML : function ()
{
if (this.currentMode == 'code') {
this.putContents(this.makeHtmlContent());
this.currentMode = 'rich';
}
},
'프로그램개발 > CMS(워드프레스,그누보드)' 카테고리의 다른 글
워드프레스를 앱으로 만들어 주는 사이트 (0) | 2014.11.27 |
---|---|
웹사이트를 편리하게 만들 수 있는 웹빌더(web builder) 모음 (0) | 2014.08.18 |
전문가가 추천하는 워드프레스 플러그인 9개 (0) | 2014.06.11 |
워드프레스닷컴, 100% 한글판 6일 나온다 (0) | 2014.06.03 |
워드프레스 속도,성능 최적화 하기 (0) | 2014.05.08 |