From 0922aa2ebc7403e397340f00c364ec17e7dbf778 Mon Sep 17 00:00:00 2001 From: zorkow Date: Tue, 1 Sep 2015 21:27:25 +0100 Subject: [PATCH] Moves keyboard menu to centroid. --- unpacked/extensions/MathMenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unpacked/extensions/MathMenu.js b/unpacked/extensions/MathMenu.js index d1aee27ae..19cfa6cd0 100644 --- a/unpacked/extensions/MathMenu.js +++ b/unpacked/extensions/MathMenu.js @@ -306,8 +306,8 @@ var node = MENU.CurrentNode() || event.target; if (!x && !y && node) { var rect = node.getBoundingClientRect(); - x = rect.right; - y = rect.bottom; + x = (rect.right + rect.left) / 2; + y = (rect.bottom + rect.top) / 2; } if (x + menu.offsetWidth > document.body.offsetWidth - this.margin) {x = document.body.offsetWidth - menu.offsetWidth - this.margin}