summaryrefslogtreecommitdiff
path: root/static/files/def.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/files/def.js')
-rw-r--r--static/files/def.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/files/def.js b/static/files/def.js
index fea41239..486c7a4a 100644
--- a/static/files/def.js
+++ b/static/files/def.js
@@ -97,7 +97,7 @@ function dropDown(e) {
ddy += obj.offsetTop;
} while(obj = obj.offsetParent);
if(tg.className.indexOf('above') >= 0) {
- ddx += 16;
+ ddx += 25;
ddy -= x(tg.rel).offsetHeight - 20;
}
else
@@ -112,7 +112,7 @@ function dropDown(e) {
var mouseX = e.pageX || (e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft);
var mouseY = e.pageY || (e.clientY + document.body.scrollTop + document.documentElement.scrollTop);
var obj = x(dds.rel);
- if((mouseX < ddx-15 || mouseX > ddx+obj.offsetWidth+5 || mouseY < ddy-20 || mouseY > ddy + obj.offsetHeight)
+ if((mouseX < ddx-25 || mouseX > ddx+obj.offsetWidth+5 || mouseY < ddy-20 || mouseY > ddy + obj.offsetHeight)
|| (tg.nodeName.toLowerCase() == 'a' && tg.className.indexOf('dropdown') >= 0 && tg != dds)) {
obj.style.left = '-500px';
dds = null;