본문 바로가기
프로그램개발/CMS(워드프레스,그누보드)

그누보드 cheditor 편집모드 버그 수정

by 크레도스 2014. 7. 8.

출처: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';
}
},