diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-15 22:22:13 -0500 | 
|---|---|---|
| committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-16 19:54:41 -0500 | 
| commit | 9557d8048bea524e22348a2ce5ce2d4a415102ee (patch) | |
| tree | eb2ee5f8a136d5b1eb6a63364b0d342928324703 | |
| parent | 68a0293867423898181b0452d842a818ce77824a (diff) | |
Fix undefined reference
| -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();              } |