1. 팝업창에서 팝업닫기 버튼(우상단)의 위치와 본문이 조금씩 숨는 문제 수정

2. 애드온 모듈 설정에서 모듈의 이름이 Array로 나오는 문제 수정.
3. xe default 게시판 스킨에서 비밀글 설정과 상관없이 사용할 수 있는 문제 수정
4. 기본 서식에서 글의 글자크기를 12px 로 고정


git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6143 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-04-20 01:48:06 +00:00
parent 41f566f434
commit be407d41aa
6 changed files with 8 additions and 4 deletions

View file

@ -504,6 +504,7 @@ function zbxe_folder_close(id) {
**/
var _popupHeight = 0;
function setFixedPopupSize() {
var headerObj = jQuery('#popHeader');
var bodyObj = jQuery('#popBody');
if(bodyObj.length) {
@ -512,6 +513,8 @@ function setFixedPopupSize() {
}
}
bodyObj.css({paddingRight:30});
var w = jQuery("#popup_content").width();
w = w< 400 ? 400 : w;
var h = jQuery("#popup_content").height();