본문 바로가기
programming/javascript

[펌] fckeditor 이미지 업로드 사이즈 제한하기

by hotdogya 2009. 8. 9.

대박~!! but~

출력될때 <img src..../> 태그 앞에 자동으로 href나 자바스크립트로 본 사이즈 링크 걸고 싶었는데 ㅡㅡ;;

나중에 바꿔야징 ㅋ

 

 

/FCKeditor/fckeditor/editor/dialog/fck_image

위 폴더안에  fck_image.js 란 파일이 있다 그안에는 다음에 function 이 있다.

 

function UpdateImage

 

function UpdateImage 바로 하단에

 

if(GetE('txtWidth').value > 600) {
  var ratio = 600/GetE('txtWidth').value;
  GetE('txtWidth').value = 600;
  GetE('txtHeight').value = Math.round(GetE('txtHeight').value * ratio);
 }