공부/Rhymix

xe 파일 첨부 / 이미지 본문삽입 시 가운데 정렬로 되게 하기

미친사람 2016. 11. 1. 17:34
반응형

위치  :: ./modules / editor / tpl / js / uploader.js

 

파일에  425번째 줄 아래와 같이 작성



이미지 가운데 정렬로 삽입되게하기


temp_code = '';
temp_code += "<center><img src=\""+file.download_url+"\" alt=\""+file.source_filename+"\"";
if(obj.complete === true) { temp_code += " width=\""+obj.width+"\" height=\""+obj.height+"\""; }
temp_code += " /></center>\r\n<p><br /></p>\r\n";
text.push(temp_code);



파일첨부 가운데 정렬로 삽입되게하기 + 굵기 + 색상도 가능합니다

(오토링크 자체를 수정해서 필요는 없을듯 합니다 )


else {
// binary파일의 경우 url_link 컴포넌트 연결
text.push("<center><b><a href=\""+file.download_url+"\">"+file.source_filename+"</a></b></center><p><br /></p>\n");
}

반응형