diff options
Diffstat (limited to 'ext/fg/js/popup.js')
| -rw-r--r-- | ext/fg/js/popup.js | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 0fd6a9d0..396a5be9 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -37,6 +37,7 @@ class Popup {          this.isInjected = false;          this.visible = false;          this.visibleOverride = null; +        this.options = null;          this.updateVisibility();      } @@ -78,6 +79,10 @@ class Popup {          });      } +    async setOptions(options) { +        this.options = options; +    } +      async show(elementRect, writingMode, options) {          await this.inject(options);  |