git-svn-id: http://xe-core.googlecode.com/svn/trunk@647 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-26 04:44:52 +00:00
parent c88f47c968
commit c9fd2fbfc2
2 changed files with 7 additions and 4 deletions

View file

@ -18,9 +18,12 @@ function isDef() {
// 윈도우 오픈 // 윈도우 오픈
var winopen_list = new Array(); var winopen_list = new Array();
function winopen(url, target, attribute) { function winopen(url, target, attribute) {
if(target != "_blank" && winopen_list[target]) { try {
winopen_list[target].close(); if(target != "_blank" && winopen_list[target]) {
winopen_list[target] = null; winopen_list[target].close();
winopen_list[target] = null;
}
} catch(e) {
} }
if(typeof(target)=='undefined') target = '_blank'; if(typeof(target)=='undefined') target = '_blank';

View file

@ -25,7 +25,7 @@ function slide_gallery_add_image(srl, image_url) {
// 원본 이미지를 미리 로딩 // 원본 이미지를 미리 로딩
obj.image = new Image(); obj.image = new Image();
obj.image.src = image_url; obj.image.src = image_url;
if(!obj.image.width) return; //if(!obj.image.width) return;
// 썸네일 이미지를 미리 로딩 // 썸네일 이미지를 미리 로딩
obj.thumbnail = new Image(); obj.thumbnail = new Image();