diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-12 11:43:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 11:43:07 -0400 |
commit | 7f3e272839a6a94142f0f53ce1e29854b224ff0a (patch) | |
tree | 78e36cd1f7122fa5ea8fb26015d190d7d2c639e5 /ext/fg/js | |
parent | 778d49f86b9652ac03d550dd7c26ffdba5b49047 (diff) | |
parent | bf4c1aef6a2fbe8c8a3ba36b9269fe7c9478983c (diff) |
Merge pull request #449 from toasted-nutbread/orphan-fix
Fix default value of _orphaned
Diffstat (limited to 'ext/fg/js')
-rw-r--r-- | ext/fg/js/frontend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 55d699e5..95427c4c 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -43,7 +43,7 @@ class Frontend extends TextScanner { this._pageZoomFactor = 1.0; this._contentScale = 1.0; - this._orphaned = true; + this._orphaned = false; this._lastShowPromise = Promise.resolve(); this._windowMessageHandlers = new Map([ |