diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-15 14:12:48 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-15 14:12:48 -0500 | 
| commit | 2e3169f68ced13f437982a67d468b6e18cfb6825 (patch) | |
| tree | f22c21b24fd83e3eaded51c2a33f24c8be8856b4 /ext/fg/js | |
| parent | 37af524015ce900af2f9ac2a7cb4efe9a79a55ee (diff) | |
Popup navigation style updates (#1035)
* Add close function to Display
* Add new sidebar with navigation and close buttons
* Set up new navigation functionality
* Remove old navigation
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) { |