Editor [SmartEditor Basic 0.3.17] 다운받고서 해야 할 일들
페이지 정보
본문
## Husky.SE_Basic.js
<156라인> - 초기에 <P> </P> 없애는 방법
수정 전: thisRef.oSelection.surroundContentsWithNewNode("P");
수정 후: thisRef.oSelection.surroundContentsWithNewNode("");
<186라인> - DOM Exception: INVALID_CHARACTER_ERR (5) 에러 해결
수정 전: button=document.createElement("<BUTTON type='button'>");
수정 후: if(navigator.appVersion.indexOf("MSIE 9") >-1){button=document.createElement("BUTTON");button.type="button";}else if(this.bIE){button=document.createElement("<BUTTON type='button'>");}else{button=document.createElement("BUTTON");button.type="button";}
<214라인> - 엔터 입력시 <P> 태그가 아닌 <BR> 태그를 먹게 하는 방법
수정 전: if(sLineBreaker=="BR"){this.sLineBreaker="BR";}else{this.sLineBreaker="P";
수정 후: if(sLineBreaker=="BR"){this.sLineBreaker="BR";}else{this.sLineBreaker="BR";
<354라인> - 이렇게 하면 이후 입력되는 엔터는 <P></P> 태그가 아닌 <BR>태그만 먹게 된다.
수정 전: new nhn.husky.SE_WYSIWYGEnterKey("P"));
수정 후: new nhn.husky.SE_WYSIWYGEnterKey("BR"));
## HuskyEZCreator.js
<66라인> - 화면에서 툴바 짤리는 현상 해결
수정 전: elIFrame.contentWindow.document.body.style.margin = "0";
수정 후: 67라인에 아래와 같이 한줄추가
elIFrame.contentWindow.document.body.style.margin = "0";
elIFrame.style.height = "auto";
댓글목록
등록된 댓글이 없습니다.