diff options
Diffstat (limited to 'ext/fg/js/popup-window.js')
-rw-r--r-- | ext/fg/js/popup-window.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/fg/js/popup-window.js b/ext/fg/js/popup-window.js index 3d707a9e..3d68beb8 100644 --- a/ext/fg/js/popup-window.js +++ b/ext/fg/js/popup-window.js @@ -132,6 +132,14 @@ class PopupWindow extends EventDispatcher { return new DOMRect(0, 0, 0, 0); } + async getFrameSize() { + return {width: 0, height: 0, valid: false}; + } + + async setFrameSize(_width, _height) { + return false; + } + // Private async _invoke(open, action, params={}, defaultReturnValue) { |