일반게시판 일단 중지
This commit is contained in:
66
js/board.js
66
js/board.js
@ -1,69 +1,3 @@
|
||||
// HTML 로 넘어온 <img ... > 태그의 폭이 테이블폭보다 크다면 테이블폭을 적용한다.
|
||||
function resizeBoardImage(imageWidth, borderColor) {
|
||||
/*
|
||||
var content = document.getElementById("writeContents");
|
||||
if (content) {
|
||||
var target = content.getElementsByTagName("img");
|
||||
if (target) {
|
||||
var imageHeight = 0;
|
||||
|
||||
for(i=0; i<target.length; i++) {
|
||||
// 원래 사이즈를 저장해 놓는다
|
||||
target[i].tmpWidth = target[i].width;
|
||||
target[i].tmpHeight = target[i].height;
|
||||
|
||||
//alert(target[i].width);
|
||||
|
||||
// 이미지 폭이 테이블 폭보다 크다면 테이블폭에 맞춘다
|
||||
if(target[i].width > imageWidth) {
|
||||
imageHeight = parseFloat(target[i].width / target[i].height)
|
||||
target[i].width = imageWidth;
|
||||
target[i].height = parseInt(imageWidth / imageHeight);
|
||||
|
||||
// 스타일에 적용된 이미지의 폭과 높이를 삭제한다
|
||||
target[i].style.width = '';
|
||||
target[i].style.height = '';
|
||||
}
|
||||
|
||||
if (borderColor) {
|
||||
target[i].style.borderWidth = '1px';
|
||||
target[i].style.borderStyle = 'solid';
|
||||
target[i].style.borderColor = borderColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
var target = document.getElementsByName('target_resize_image[]');
|
||||
var imageHeight = 0;
|
||||
|
||||
if (target) {
|
||||
for(i=0; i<target.length; i++) {
|
||||
// 원래 사이즈를 저장해 놓는다
|
||||
target[i].tmp_width = target[i].width;
|
||||
target[i].tmp_height = target[i].height;
|
||||
// 이미지 폭이 테이블 폭보다 크다면 테이블폭에 맞춘다
|
||||
if(target[i].width > imageWidth) {
|
||||
imageHeight = parseFloat(target[i].width / target[i].height)
|
||||
target[i].width = imageWidth;
|
||||
target[i].height = parseInt(imageWidth / imageHeight);
|
||||
target[i].style.cursor = 'pointer';
|
||||
|
||||
// 스타일에 적용된 이미지의 폭과 높이를 삭제한다
|
||||
target[i].style.width = '';
|
||||
target[i].style.height = '';
|
||||
}
|
||||
|
||||
if (borderColor) {
|
||||
target[i].style.borderWidth = '1px';
|
||||
target[i].style.borderStyle = 'solid';
|
||||
target[i].style.borderColor = borderColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getFontSize() {
|
||||
var fontSize = parseInt(get_cookie("ck_fontsize")); // 폰트크기 조절
|
||||
if (isNaN(fontSize)) { fontSize = 12; }
|
||||
|
||||
Reference in New Issue
Block a user