diff options
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 694aa6b7..4c5a01d8 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -49,8 +49,8 @@ class Popup { posY = elementRect.top - popupRect.height - this.offset; } - this.popup.style.left = pos.x + 'px'; - this.popup.style.top = pos.y + 'px'; + this.popup.style.left = posX + 'px'; + this.popup.style.top = posY + 'px'; this.popup.style.visibility = 'visible'; this.setContent(content); |