mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-10 04:24:14 +09:00
IE6일 경우 회원멤버 메뉴 레이어 뜰때 select elements숨기는 기능 제거. (오류가 발생함)
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2635 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
708489f4d4
commit
7b335eb9b1
1 changed files with 0 additions and 16 deletions
|
|
@ -478,13 +478,6 @@ function chkMemberMenu(evt) {
|
||||||
obj = obj.parentNode;
|
obj = obj.parentNode;
|
||||||
}
|
}
|
||||||
if(!obj || !obj.className || obj.className.search("member_")==-1) {
|
if(!obj || !obj.className || obj.className.search("member_")==-1) {
|
||||||
// IE6의 경우 닫았던 select박스를 모두 표시
|
|
||||||
if(xIE6) {
|
|
||||||
var list = xGetElementsByTagName("SELECT");
|
|
||||||
for (var i=0; i<list.length; i++) {
|
|
||||||
list[i].style.visibility = list[i].getAttribute("old_visibility");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -550,15 +543,6 @@ function displayMemberMenu(ret_obj, response_tags, params) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(html) {
|
if(html) {
|
||||||
// IE6의 경우 select박스를 모두 숨겨버림
|
|
||||||
if(xIE6) {
|
|
||||||
var list = xGetElementsByTagName("SELECT");
|
|
||||||
for (var i=0; i<list.length; i++) {
|
|
||||||
list[i].setAttribute("old_visibility", list[i].style.visibility);
|
|
||||||
list[i].style.visibility = 'hidden';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 레이어 출력
|
// 레이어 출력
|
||||||
xInnerHtml('membermenuarea', "<div class=\"box\">"+html+"</div>");
|
xInnerHtml('membermenuarea', "<div class=\"box\">"+html+"</div>");
|
||||||
xWidth(area, xWidth(area));
|
xWidth(area, xWidth(area));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue