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

This commit is contained in:
zero 2007-06-21 05:28:09 +00:00
parent fcb4fe15d6
commit bf23eca99d
48 changed files with 719 additions and 530 deletions

View file

@ -22,7 +22,7 @@ html { width:100%; position:relative;}
body { font-size:.75em; margin:2em;}
img { border:none;}
label { cursor:pointer;}
select { height:1.6em;}
/*select { height:1.6em;}*/
option { padding-right:.5em;}
li { list-style:none;}
a { text-decoration:none;}

View file

@ -108,8 +108,9 @@ function sendMailTo(to) {
**/
function move_url(url, open_wnidow) {
if(!url) return false;
if(typeof(open_wnidow)=='undefined') open_wnidow = false;
if(typeof(open_wnidow)=='undefined') open_wnidow = 'N';
if(open_wnidow=='N') open_wnidow = false;
else open_wnidow = true;
if(/^\./.test(url)) url = request_uri+url;
@ -241,6 +242,14 @@ function setFixedPopupSize() {
var w = xWidth("popup_content");
var h = xHeight("popup_content");
var obj_list = xGetElementsByTagName('div');
for(i=0;i<obj_list.length;i++) {
var ww = xWidth(obj_list[i]);
var id = obj_list[i].id;
if(id == 'waitingforserverresponse' || id == 'fororiginalimagearea' || id == 'fororiginalimageareabg') continue;
if(ww>w) w = ww;
}
// 윈도우에서는 브라우저 상관없이 가로 픽셀이 조금 더 늘어나야 한다.
if(xUA.indexOf('windows')>0) {
if(xOp7Up) w += 10;
@ -248,8 +257,7 @@ function setFixedPopupSize() {
else w += 6;
}
window.resizeTo(w,h);
var w1 = xWidth(window.document.body);
var h1 = xHeight(window.document.body);
window.resizeBy(0,h-h1);
}

View file

@ -88,6 +88,7 @@
$lang->ipaddress = 'IP 주소';
$lang->path = '경로';
$lang->cart = '선택항목';
$lang->friend = '친구';
$lang->mid = '모듈이름';
$lang->layout = '레이아웃';

View file

@ -17,10 +17,10 @@
<!--@end--><!--@if($rss_url)--><link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="{$rss_url}" />
<!--@end--><link rel="stylesheet" href="./common/css/default.css" type="text/css" />
<!--@foreach(Context::getCssFile() as $key => $css_file)--><link rel="stylesheet" href="{$css_file}" type="text/css" />
<!--@end--><script type="text/javascript">
<!--@end--><script type="text/javascript">//<![CDATA[
var current_url = "{$current_url}";
var request_uri = "{$request_uri}";
</script>
//]]></script>
{Context::getHtmlHeader()}