mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-12 23:12:13 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4704 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8f01c5ccd8
commit
95649deccd
1 changed files with 2 additions and 2 deletions
|
|
@ -404,8 +404,8 @@ function chkPopupMenu(evt) {
|
|||
if(!obj) return;
|
||||
|
||||
// obj의 nodeName이 div나 span이 아니면 나올대까지 상위를 찾음
|
||||
if(obj && obj.nodeName != 'DIV' && obj.nodeName != 'SPAN') obj = obj.parentNode;
|
||||
if(!obj || (obj.nodeName != 'DIV' && obj.nodeName != 'SPAN')) return;
|
||||
if(obj && obj.nodeName != 'DIV' && obj.nodeName != 'SPAN' && obj.nodeName != 'A') obj = obj.parentNode;
|
||||
if(!obj || (obj.nodeName != 'DIV' && obj.nodeName != 'SPAN' && obj.nodeName != 'A')) return;
|
||||
|
||||
// 객체의 className값을 구함
|
||||
var class_name = obj.className;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue