diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 22:27:31 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 22:27:31 -0400 |
commit | bf4c1aef6a2fbe8c8a3ba36b9269fe7c9478983c (patch) | |
tree | b4c72e8861f0179748936ee8d6b4c76468ff1dd8 /ext/fg/js | |
parent | 82f83970001682018f1f5b595ffdcd13123fed91 (diff) |
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([ |