Skip to content

Commit 2551cfd

Browse files
committed
always add <iframe> to the top of <body>
1 parent d938115 commit 2551cfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/supervisor/frontend/src/shared/loading-frame.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function load(): Promise<{
1616
frame.src = startUrl.toString();
1717
frame.style.visibility = "visible";
1818
frame.className = "gitpod-frame loading";
19-
document.body.appendChild(frame);
19+
document.body.prepend(frame);
2020

2121
frame.onload = () => {
2222
const frontendDashboardServiceClient = new FrontendDashboardServiceClient(frame.contentWindow!);

0 commit comments

Comments
 (0)