diff --git a/pkgs/lib/CtxMenu.js b/pkgs/lib/CtxMenu.js index 1f0f370..ed26426 100644 --- a/pkgs/lib/CtxMenu.js +++ b/pkgs/lib/CtxMenu.js @@ -65,6 +65,11 @@ export default { top: window.innerHeight - bcr.height + "px", }); } + if (bcr.right > window.innerWidth) { + ctxMenu.style({ + top: window.innerWidth - bcr.width + "px", + }); + } }); return ctxMenu;