diff options
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 78106319..a0eb725c 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -19,15 +19,15 @@ class Popup { constructor() { - this.popup = null; + this.popup = null; this.offset = 10; } showAt(pos, content) { this.inject(); - this.popup.style.left = pos.x + 'px'; - this.popup.style.top = pos.y + 'px'; + this.popup.style.left = pos.x + 'px'; + this.popup.style.top = pos.y + 'px'; this.popup.style.visibility = 'visible'; this.setContent(content); |