diff options
Diffstat (limited to 'ext/fg/js/float.js')
| -rw-r--r-- | ext/fg/js/float.js | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 01055ca6..5c2c50c2 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -1,6 +1,5 @@  /* - * Copyright (C) 2016-2020  Alex Yatskov <alex@foosoft.net> - * Author: Alex Yatskov <alex@foosoft.net> + * Copyright (C) 2016-2020  Yomichan Authors   *   * This program is free software: you can redistribute it and/or modify   * it under the terms of the GNU General Public License as published by @@ -18,7 +17,7 @@  /* global   * Display - * apiForward + * apiBroadcastTab   * apiGetMessageToken   * popupNestedInitialize   */ @@ -80,7 +79,7 @@ class DisplayFloat extends Display {          this.setContentScale(scale); -        apiForward('popupPrepareCompleted', {targetPopupId: this._popupId}); +        apiBroadcastTab('popupPrepareCompleted', {targetPopupId: this._popupId});      }      onError(error) { @@ -181,7 +180,7 @@ class DisplayFloat extends Display {                  },                  2000              ); -            apiForward('requestDocumentInformationBroadcast', {uniqueId}); +            apiBroadcastTab('requestDocumentInformationBroadcast', {uniqueId});              const {title} = await promise;              return title; |