Skip to content

Commit 2046623

Browse files
for mobile, changed appendChild to prepend so the journey is at the top of the HTML and is read first by screen readers.
1 parent 15c30fa commit 2046623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/branch_view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function renderHtmlBlob(parent, html, hasApp, iframeLoadedCallback) {
6363
}
6464
else
6565
{
66-
document.body.appendChild(iframe);
66+
document.body.prepend(iframe);
6767
}
6868
return iframe;
6969
};

0 commit comments

Comments
 (0)