diff options
| -rw-r--r-- | ext/fg/js/popup.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 2026b7a5..4d00f629 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -285,7 +285,7 @@ class Popup {      _focusParent() {          if (this._parent !== null) {              // Chrome doesn't like focusing iframe without contentWindow. -            const contentWindow = this._parent.container.contentWindow; +            const contentWindow = this._parent._container.contentWindow;              if (contentWindow !== null) {                  contentWindow.focus();              } |