diff --git a/online-editor.js b/online-editor.js index aa166a9..99fb540 100644 --- a/online-editor.js +++ b/online-editor.js @@ -320,8 +320,8 @@ function besRenderPopup(matches, popup, clientX, clientY) { function besIsPointInRect(x, y, rect) { return ( x >= rect.x && - x <= rect.x + rect.width && + x < rect.x + rect.width && y >= rect.y && - y <= rect.y + rect.height + y < rect.y + rect.height ) }