멤버메뉴 팝업이 IE6에서 길이가 길어지던 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1967 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-20 01:12:00 +00:00
parent 53dfd9d601
commit 392eb2d4b6
2 changed files with 5 additions and 4 deletions

View file

@ -498,7 +498,7 @@ function displayMemberMenu(ret_obj, response_tags, params) {
if(!str || !func) continue;
html += "<div class=\""+className+"\" onmouseover=\"this.className='"+className+"_on'\" onmouseout=\"this.className='"+className+"'\" style=\"background:url("+icon+") no-repeat left;\" onclick=\""+func+"\">"+str+"</div>";
html += "<div class=\""+className+"\" onmouseover=\"this.className='"+className+"_on'\" onmouseout=\"this.className='"+className+"'\" style=\"background:url("+icon+") no-repeat left;\" onclick=\""+func+"\">"+str+"</div><br />";
}
}
loaded_member_menu_list[member_srl] = html;
@ -506,6 +506,7 @@ function displayMemberMenu(ret_obj, response_tags, params) {
if(html) {
xInnerHtml(area, html);
xWidth(area, xWidth(area));
xLeft(area, params["page_x"]);
xTop(area, params["page_y"]);
if(xWidth(area)+xLeft(area)>xClientWidth()+xScrollLeft()) xLeft(area, xClientWidth()-xWidth(area)+xScrollLeft());