diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/float.js | 6 | ||||
| -rw-r--r-- | ext/fg/js/frame-offset-forwarder.js | 4 | ||||
| -rw-r--r-- | ext/fg/js/frontend-initialize.js | 4 | ||||
| -rw-r--r-- | ext/fg/js/frontend.js | 8 | 
4 files changed, 11 insertions, 11 deletions
| diff --git a/ext/fg/js/float.js b/ext/fg/js/float.js index 77e5ea0a..5c2c50c2 100644 --- a/ext/fg/js/float.js +++ b/ext/fg/js/float.js @@ -17,7 +17,7 @@  /* global   * Display - * apiForward + * apiBroadcastTab   * apiGetMessageToken   * popupNestedInitialize   */ @@ -79,7 +79,7 @@ class DisplayFloat extends Display {          this.setContentScale(scale); -        apiForward('popupPrepareCompleted', {targetPopupId: this._popupId}); +        apiBroadcastTab('popupPrepareCompleted', {targetPopupId: this._popupId});      }      onError(error) { @@ -180,7 +180,7 @@ class DisplayFloat extends Display {                  },                  2000              ); -            apiForward('requestDocumentInformationBroadcast', {uniqueId}); +            apiBroadcastTab('requestDocumentInformationBroadcast', {uniqueId});              const {title} = await promise;              return title; diff --git a/ext/fg/js/frame-offset-forwarder.js b/ext/fg/js/frame-offset-forwarder.js index b3c10bb8..c658c55a 100644 --- a/ext/fg/js/frame-offset-forwarder.js +++ b/ext/fg/js/frame-offset-forwarder.js @@ -16,7 +16,7 @@   */  /* global - * apiForward + * apiBroadcastTab   */  class FrameOffsetForwarder { @@ -96,6 +96,6 @@ class FrameOffsetForwarder {      }      _forwardFrameOffsetOrigin(offset, uniqueId) { -        apiForward('frameOffset', {offset, uniqueId}); +        apiBroadcastTab('frameOffset', {offset, uniqueId});      }  } diff --git a/ext/fg/js/frontend-initialize.js b/ext/fg/js/frontend-initialize.js index 0a586ff9..5af7fdf0 100644 --- a/ext/fg/js/frontend-initialize.js +++ b/ext/fg/js/frontend-initialize.js @@ -20,7 +20,7 @@   * Frontend   * PopupProxy   * PopupProxyHost - * apiForward + * apiBroadcastTab   * apiOptionsGet   */ @@ -43,7 +43,7 @@ async function main() {                  }              }          ); -        apiForward('rootPopupRequestInformationBroadcast'); +        apiBroadcastTab('rootPopupRequestInformationBroadcast');          const {popupId, frameId} = await rootPopupInformationPromise;          const frameOffsetForwarder = new FrameOffsetForwarder(); diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 6fbbd0fb..95427c4c 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -17,7 +17,7 @@  /* global   * TextScanner - * apiForward + * apiBroadcastTab   * apiGetZoom   * apiKanjiFind   * apiOptionsGet @@ -43,7 +43,7 @@ class Frontend extends TextScanner {          this._pageZoomFactor = 1.0;          this._contentScale = 1.0; -        this._orphaned = true; +        this._orphaned = false;          this._lastShowPromise = Promise.resolve();          this._windowMessageHandlers = new Map([ @@ -260,12 +260,12 @@ class Frontend extends TextScanner {      _broadcastRootPopupInformation() {          if (!this.popup.isProxy() && this.popup.depth === 0) { -            apiForward('rootPopupInformation', {popupId: this.popup.id, frameId: this.popup.frameId}); +            apiBroadcastTab('rootPopupInformation', {popupId: this.popup.id, frameId: this.popup.frameId});          }      }      _broadcastDocumentInformation(uniqueId) { -        apiForward('documentInformationBroadcast', { +        apiBroadcastTab('documentInformationBroadcast', {              uniqueId,              frameId: this.popup.frameId,              title: document.title |