diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 17:27:55 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-16 18:59:08 -0500 |
commit | dcd243c9e9f3af3fedb0bb0db9795f377f175587 (patch) | |
tree | edfa53153d16415ee3d61b90b83b9287b42f1b36 /ext/fg/js/popup.js | |
parent | 5d3c13ee98c49de8b3bd57892d93bd4eca2cf7ee (diff) |
Update how popups are created
Diffstat (limited to 'ext/fg/js/popup.js')
-rw-r--r-- | ext/fg/js/popup.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/fg/js/popup.js b/ext/fg/js/popup.js index 0fc40475..8d4d2b14 100644 --- a/ext/fg/js/popup.js +++ b/ext/fg/js/popup.js @@ -49,10 +49,18 @@ class Popup { // Public properties + get id() { + return this._id; + } + get parent() { return this._parent; } + get child() { + return this._child; + } + get depth() { return this._depth; } |