Skip to content

Commit

Permalink
Revert "Wait for custom UI (#1523)"
Browse files Browse the repository at this point in the history
This reverts commit ab2313d.
  • Loading branch information
donavanbecker committed Aug 22, 2023
1 parent e5fc138 commit 97ff2c4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ export class CustomPluginsComponent implements OnInit, OnDestroy {
this.iframe = this.customPluginUiElementTarget.nativeElement as HTMLIFrameElement;
this.iframe.src = environment.api.base + this.basePath +
'/index.html?origin=' + encodeURIComponent(location.origin) + '&v=' + encodeURIComponent(this.plugin.installedVersion);
this.iframe.onload = () => {
this.uiLoaded = true;
};
}

handleMessage = (e: MessageEvent) => {
Expand Down

0 comments on commit 97ff2c4

Please sign in to comment.