diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-11 22:21:55 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-11 22:21:55 -0500 |
commit | 65dfb855fb23d8279367651ab650f3347aa236ac (patch) | |
tree | 0e20d58d83ba3f5a3939a5f738c58680c4ff65e4 | |
parent | 9c5ad3ea67249416a31cf5c2f6e4917c0bed0fbf (diff) |
Fix undefined id
-rw-r--r-- | ext/fg/js/popup-proxy.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js index 4cacee53..63aa6bbe 100644 --- a/ext/fg/js/popup-proxy.js +++ b/ext/fg/js/popup-proxy.js @@ -69,7 +69,7 @@ class PopupProxy { if (this._id === null) { return; } - this._invokeHostApi('setVisibleOverride', {id, visible}); + this._invokeHostApi('setVisibleOverride', {id: this._id, visible}); } async containsPoint(x, y) { |