diff options
Diffstat (limited to 'ext/js/display/display-notification.js')
| -rw-r--r-- | ext/js/display/display-notification.js | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/js/display/display-notification.js b/ext/js/display/display-notification.js index e3da8371..f9e72e6b 100644 --- a/ext/js/display/display-notification.js +++ b/ext/js/display/display-notification.js @@ -25,6 +25,14 @@ class DisplayNotification {          this._closeTimer = null;      } +    get container() { +        return this._container; +    } + +    get node() { +        return this._node; +    } +      open() {          if (!this.isClosed()) { return; }  |