diff options
author | Alex Yatskov <FooSoft@users.noreply.github.com> | 2019-09-15 11:33:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-15 11:33:48 -0700 |
commit | e4fa658295e2149c63a51d623773bf348f21f0c5 (patch) | |
tree | c85f6790daec19dfb8111882e2ff191ebc144a49 /ext/fg/js/popup-proxy.js | |
parent | 4af9fc2b3bc83b160376034bee4e5ef21cf3b205 (diff) | |
parent | 0067dfeacc3ecaf1215f1b9026c500bff31761e6 (diff) |
Merge pull request #212 from toasted-nutbread/frontend-cleanup
Frontend cleanup
Diffstat (limited to 'ext/fg/js/popup-proxy.js')
-rw-r--r-- | ext/fg/js/popup-proxy.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js index c3a7bff0..f04e24e0 100644 --- a/ext/fg/js/popup-proxy.js +++ b/ext/fg/js/popup-proxy.js @@ -69,11 +69,11 @@ class PopupProxy { return await this.invokeHostApi('setVisible', {id, visible}); } - async containsPoint(point) { + async containsPoint(x, y) { if (this.id === null) { return false; } - return await this.invokeHostApi('containsPoint', {id: this.id, point}); + return await this.invokeHostApi('containsPoint', {id: this.id, x, y}); } async termsShow(elementRect, writingMode, definitions, options, context) { |