summaryrefslogtreecommitdiff
path: root/ext/fg/js/popup-proxy-host.js
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2019-09-01 19:47:33 +0300
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-09-02 19:33:52 -0400
commit2df9a7f97794df46aac70a23bb2b62dbd2752a5a (patch)
tree4da8c108f21b1943c8b2d2d4c47ff498ddb068c2 /ext/fg/js/popup-proxy-host.js
parent97be029deee4ec34ad2e90081af15d573dede0cd (diff)
change Popup.children to Popup.child
Diffstat (limited to 'ext/fg/js/popup-proxy-host.js')
-rw-r--r--ext/fg/js/popup-proxy-host.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js
index 1048f410..fa61aeb4 100644
--- a/ext/fg/js/popup-proxy-host.js
+++ b/ext/fg/js/popup-proxy-host.js
@@ -57,7 +57,7 @@ class PopupProxyHost {
const popup = new Popup(id, depth, this.frameIdPromise);
if (parent !== null) {
popup.parent = parent;
- parent.children.push(popup);
+ parent.child = popup;
}
this.popups[id] = popup;
return popup;