contectmenu is not displayed out of the screen

master
Steffen Pohle 4 years ago
parent 936fb74dcd
commit 1c5c98752d

@ -88,6 +88,9 @@ function gContextmenuCreate(title, clientInnerHTML) {
cm.style.top = getMouseY(); cm.style.top = getMouseY();
cm.style.left = getMouseX(); cm.style.left = getMouseX();
if (parseInt(cm.style.left) + 150 > window.innerWidth) cm.style.left = window.innerWidth - 150;
if (parseInt(cm.style.top) + 400 > window.innerHeight) cm.style.top = window.innerHeight - 400;
return cm; return cm;
}; };

Loading…
Cancel
Save