diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-04-11 11:32:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 11:32:52 -0400 |
commit | a864cf094fd17246d47604608830ed07a4706716 (patch) | |
tree | 671b1f5e1f79e244a344b0f4b659f3e0b084dcec /ext/fg/js/float.js | |
parent | 82dd41f58010c60a856c8c364f32a7078c112f29 (diff) | |
parent | a296c758b95b428777548f5aada1be13429faf03 (diff) |
Merge pull request #437 from toasted-nutbread/backend-api-handler-changes
Backend api handler changes
Diffstat (limited to 'ext/fg/js/float.js')
-rw-r--r-- | ext/fg/js/float.js | 6 |
1 files changed, 3 insertions, 3 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; |