diff options
Diffstat (limited to 'ext/js/app/popup-window.js')
-rw-r--r-- | ext/js/app/popup-window.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/app/popup-window.js b/ext/js/app/popup-window.js index d0826775..6f86c61e 100644 --- a/ext/js/app/popup-window.js +++ b/ext/js/app/popup-window.js @@ -123,7 +123,7 @@ class PopupWindow extends EventDispatcher { } getFrameRect() { - return new DOMRect(0, 0, 0, 0); + return {x: 0, y: 0, width: 0, height: 0, valid: false}; } async getFrameSize() { |