We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebc383 commit cf7c0cfCopy full SHA for cf7c0cf
components/supervisor/frontend/src/shared/loading-frame.ts
@@ -14,9 +14,10 @@ export function load(): Promise<{
14
return new Promise((resolve) => {
15
const frame = document.createElement("iframe");
16
frame.src = startUrl.toString();
17
+ console.debug("Showing iframe because ")
18
frame.style.visibility = "visible";
19
frame.className = "gitpod-frame loading";
- document.body.appendChild(frame);
20
+ document.body.prepend(frame);
21
22
frame.onload = () => {
23
const frontendDashboardServiceClient = new FrontendDashboardServiceClient(frame.contentWindow!);
0 commit comments