Subversion Repositories DevTools

Rev

Rev 5506 | Rev 6592 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5506 Rev 6591
Line 58... Line 58...
58
//if (delta < 0) top += delta;
58
//if (delta < 0) top += delta;
59
 
59
 
60
menuobj.thestyle.left=left+'px';
60
menuobj.thestyle.left=left+'px';
61
menuobj.thestyle.top=top+'px';
61
menuobj.thestyle.top=top+'px';
62
menuobj.thestyle.visibility="visible"
62
menuobj.thestyle.visibility="visible"
-
 
63
 
-
 
64
// Stop onClick event propagating
-
 
65
if (!e)
-
 
66
  e = window.event;
-
 
67
 
-
 
68
//IE9 & Other Browsers
-
 
69
if (e.stopPropagation) {
-
 
70
  e.stopPropagation();
-
 
71
}
-
 
72
//IE8 and Lower
-
 
73
else {
-
 
74
  e.cancelBubble = true;
-
 
75
}
63
return false
76
return false
64
}
77
}
65
 
78
 
66
function contains_ns6(a, b) {
79
function contains_ns6(a, b) {
67
//Determines if 1 element in contained in another- by Brainjar.com
80
//Determines if 1 element in contained in another- by Brainjar.com