diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/float.js | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 9f58439f..bc555ffd 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -63,7 +63,7 @@ class DisplayFloat extends Display {      }      onEscape() { -        this._invokeOwner('closePopup'); +        this.close();      }      async getDocumentTitle() { @@ -83,6 +83,10 @@ class DisplayFloat extends Display {          return data.data;      } +    close() { +        this._invokeOwner('closePopup'); +    } +      // Message handling      _onWindowMessage(e) { |